/* 语言切换按钮样式 */
.chinese-converter-switcher {
    position: fixed;
    z-index: 9999;
    margin: 20px;
}

.chinese-converter-switcher.top-right {
    top: 0;
    right: 0;
}

.chinese-converter-switcher.top-left {
    top: 0;
    left: 0;
}

.chinese-converter-switcher.bottom-right {
    bottom: 0;
    right: 0;
}

.chinese-converter-switcher.bottom-left {
    bottom: 0;
    left: 0;
}

.chinese-converter-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007cba;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chinese-converter-button:hover {
    background-color: #006ba1;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.chinese-converter-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .chinese-converter-switcher {
        margin: 10px;
    }
    
    .chinese-converter-button {
        padding: 6px 12px;
        font-size: 12px;
    }
}