/* Temaya uygun global scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.35);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.35);
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.5);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.55);
}

/* ─── Language Selector Bar ─── */
.dlang-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    padding: 2px 0 0 0;
    flex-wrap: nowrap;
    user-select: none;
    width: 100%;
}

.dlang-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.25s ease;
    object-fit: cover;
    border: 1px solid transparent;
    flex-shrink: 0;
}

.dlang-flag:hover {
    opacity: 1;
    transform: scale(1.15);
    border-color: rgba(0, 255, 136, 0.5);
}

.dlang-flag.dlang-active {
    opacity: 1;
    border-color: #00ff88;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.4);
    transform: scale(1.1);
}

/* Responsive overrides (cascade fix: this file loads after style-responsive.css) */
@media (max-width: 768px) {
    .dlang-bar {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .dlang-bar {
        justify-content: center;
    }
}

