/* 语言切换器样式 */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.language-switcher-label {
    margin-right: 10px;
    font-weight: bold;
}

.language-btn {
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #5e6061f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: #e0e0e0;
}

.language-btn.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .language-btn {
        padding: 3px 8px;
        font-size: 0.9em;
    }
} 