/* Language Selector Styles */

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.language-selector a {
    display: inline-block;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.language-selector a.active {
    background-color: #3ec3f8;
    color: white;
}

.language-selector a.active:hover {
    background-color: #2eb3e8;
}

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

@media (max-width: 480px) {
    .language-selector {
        top: 8px;
        right: 8px;
        padding: 4px;
    }
    
    .language-selector a {
        padding: 5px 8px;
        font-size: 11px;
    }
}
