/* Language Dropdown Styles - Shared across all language versions */

/* Custom scrollbar for language dropdown */
#langDropdown::-webkit-scrollbar {
    width: 6px;
}

#langDropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#langDropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #fb923c, #ec4899);
    border-radius: 10px;
}

#langDropdown::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #f97316, #db2777);
}

/* Language item styling */
.lang-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    transition: all 0.15s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.lang-item:hover {
    background: linear-gradient(to right, rgba(251, 146, 60, 0.3), rgba(236, 72, 153, 0.3));
    backdrop-filter: blur(20px);
}

.lang-item.active {
    background: linear-gradient(to right, rgba(251, 146, 60, 0.4), rgba(236, 72, 153, 0.4));
    font-weight: 600;
    border-left: 3px solid rgba(251, 146, 60, 0.8);
}

.lang-item .lang-flag {
    font-size: 1.25rem;
}

.lang-item .lang-name {
    flex: 1;
}

.lang-item .lang-code {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}
