/* Shared Language Selector Styles */
.language-selector-container {
    position: relative;
    display: inline-block;
}

.dropdown {
    position: relative;
    margin: 12px auto 18px auto;
    width: 260px;
}

.dropbtn {
    width: 100%;
    padding: 10px 10px 10px 8px;
    border-radius: 8px;
    border: 0;
    background: #333;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.dropbtn:hover {
    background: #444;
}

.globe-icon {
    font-size: 18px;
    line-height: 1;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #444;
    border-radius: 8px;
    overflow: hidden;
    z-index: 20;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-content a {
    display: block;
    padding: 10px 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #555;
}

/* Scrollbar styling for dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #333;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #777;
}
