/* Language Selector Styles */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.language-selector a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

.language-selector a:hover {
    background: #f0f0f0;
    color: #000;
}

.language-selector .active {
    background: #007bff;
    color: white !important;
}

.language-selector .separator {
    color: #ccc;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
    }
    
    .language-selector a {
        font-size: 12px;
        padding: 4px 8px;
    }
}
