/* ========== Toast 提示框样式（屏幕正中央半透明）========== */
.qcf-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    pointer-events: none;
    max-width: 90vw;
    min-width: 200px;
    text-align: center;
}

.qcf-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.qcf-toast-content {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    word-break: break-word;
}

.qcf-toast-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qcf-toast-success .qcf-toast-icon {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.2);
}
.qcf-toast-error .qcf-toast-icon {
    color: #ff5252;
    background: rgba(255, 82, 82, 0.2);
}

@media (max-width: 600px) {
    .qcf-toast-content {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 160px;
    }
    .qcf-toast-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
}

/* ========== 可复制文本样式（超级醒目版）========== */
.copy-enabled {
    /* 强烈背景色：亮橙黄渐变 */
    background: linear-gradient(135deg, #fff3b0 0%, #ffdb6e 100%);
    /* 醒目边框：2px 实线橙色 */
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 2px 8px;
    margin: 0 2px;
    font-weight: 700;
    color: #7c2d12;          /* 深棕色文字，高对比 */
    cursor: copy;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    /* 添加轻微内阴影增加立体感 */
    text-shadow: 0 0 0 transparent;
}

/* 悬停效果：更亮 + 放大 + 阴影加强 */
.copy-enabled:hover {
    background: linear-gradient(135deg, #ffe69e 0%, #ffcc4a 100%);
    border-color: #f97316;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    color: #431407;
}

/* 点击瞬间反馈 */
.copy-enabled:active {
    transform: scale(0.98);
    transition: 0.05s;
}

/* 可选：加一个闪烁的黄色光标提示 */
.copy-enabled {
    cursor: copy;
}

/* 移除所有伪元素（图标） */
.copy-enabled::before,
.copy-enabled::after {
    display: none;
}