/* 遮罩层 */
.zidong-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    z-index: 9998;
    cursor: wait;
}

.zidong-overlay::before {
    content: "请勿操作，正在自动处理中...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 24px;
    border-radius: 12px;
    color: #333;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 提示框容器 */
#zidong-steps,
#tb-steps,
.zidong-steps-box {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #fff;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-size: 16px;
    color: #111;
    line-height: 1.6;
    text-align: center;
}

/* 按钮组容器 */
.zidong-button-group {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* 按钮样式 */
.zidong-button,
#zidong-steps button,
#tb-steps button {
    padding: 10px 20px;
    background-color: #007aff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

/* 授权结果高亮样式 */
.mc-password-result {
    transition: all 0.3s ease-in-out;
}

.mc-password-result.highlighted {
    border: 2px dashed #007aff;
    padding: 12px;
}