.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-toggle {
    background: #60C5D1;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.language-toggle:hover {
    background: #4FA5B0;
}

.dropdown-arrow {
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: block;
    width: 100%;
    padding: 8px 15px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option.active {
    background: #60C5D1;
    color: white;
}
