/* Language Switcher Component Styles */

.language-switcher-container {
    display: inline-block;
    margin: 0 10px;
    padding: 10px;
    background: #ffffff;
    border: 2px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    text-align: center;
}

.language-switcher-title {
    margin-bottom: 8px;
}

.language-switcher-title strong {
    color: #333;
    font-size: 14px;
}

.language-switcher-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.language-switcher-btn {
    padding: 10px 20px;
    border: 2px solid #007bff;
    border-radius: 6px;
    background: white;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    min-width: 80px;
    transition: all 0.3s;
}

.language-switcher-btn:hover {
    transform: scale(1.05);
}

.language-switcher-btn-active {
    background: #007bff;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher-container {
        min-width: 150px;
        padding: 8px;
    }
    
    .language-switcher-buttons {
        gap: 5px;
    }
    
    .language-switcher-btn {
        padding: 8px 15px;
        min-width: 60px;
        font-size: 12px;
    }
} 