/* Custom styles for language switcher dropdown */
#site-language-toggle:checked ~ .site-language-toggle + #site-language-options,
#site-language-toggle:checked + .site-language-toggle + #site-language-options {
    display: block !important;
}

.site-language {
    position: relative;
}

.site-language ._language-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 999;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 75px;
    max-height: 300px;
    overflow-y: auto;
}

.site-language ._language-options a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #000;
    text-decoration: none;
    border-top: 1px solid #ddd;
    transition: background-color 0.2s;
    cursor: pointer;
    pointer-events: auto !important;
    z-index: 1000;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.site-language ._language-options a:first-child {
    border-top: none;
}

.site-language ._language-options a:hover,
.site-language ._language-options a.active {
    background-color: #f0f0f0;
}

.site-language-toggle {
    cursor: pointer;
    user-select: none;
}

/* Ensure language icon displays properly */
.site-language-toggle ._language-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}

.site-language-toggle ._language-icon .iti__flag {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0;
}

