

/* ===== PDF PREVIEW PAGE (hidden, for html2canvas) ===== */
.pdf-preview-page-training {
    position: fixed;
    top: 0; left: 0;
    width: 794px;
    background: #fff;
    z-index: -9999;
    visibility: hidden;
    padding: 30px 36px;
    font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ===== DECLARATION BOX ===== */
.declaration-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1.5px solid var(--border);
}

.declaration-box input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.declaration-box label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    cursor: pointer;
    margin: 0;
}

/* ===== EMAIL GUIDE OVERLAY ===== */
#emailGuideOverlay {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== FORM NOTE UPDATE ===== */
.form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 4px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .declaration-box {
        padding: 12px;
    }
    .declaration-box label {
        font-size: 12px;
    }
}
