.lang-select {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem 0.5rem 0.75rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    font-size: 0.875rem;
    min-width: 120px;
    cursor: pointer;
}

.globe-icon {
    width: 24px;
    height: 24px;
    fill: #4B5563;
    cursor: pointer;
    transition: fill 0.2s;
}

.globe-icon:hover {
    fill: #111827;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    z-index: 50;
}

.lang-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4B5563;
    text-decoration: none;
}

.lang-dropdown a:hover {
    background-color: #F3F4F6;
}

@media (max-width: 768px) {
    .lang-select {
        min-width: 100%;
        padding: 0.375rem 1.5rem 0.375rem 0.5rem;
        background-color: transparent;
        border: 1px solid #e2e8f0;
    }
    #mobile-language-switcher {
        width: 100%;
    }
} 