/* Version: 2.0.1 */
.version-toggle-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.version-toggle-button:hover {
    background-color: #3367d6;
    transform: scale(1.05);
}

.version-toggle-button:active {
    transform: scale(0.95);
}

/* 关闭版本按钮样式 */
.version-toggle-button-close {
    background-color: #f44336;
}

.version-toggle-button-close:hover {
    background-color: #d32f2f;
}