/* 语言切换器样式 - 带标签版本 */
#language-switcher {
    margin: 10px auto;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#language-switcher span {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

#language-switcher select {
    width: 60%;
    padding: 8px 10px;
    background-color: #343131;
    color: #ccc;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
}

@media screen and (max-width: 768px) {
    #language-switcher span {
        font-size: 12px;
    }
    
    #language-switcher select {
        font-size: 12px;
        padding: 6px 8px;
        width: 50%;
    }
}