/* ── 프리뷰 모달, Callout ── */

/* Preview Modal */
.preview-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center; z-index: 99999;
}
.preview-modal {
    background: white; border-radius: 16px;
    max-width: 90vw; width: fit-content; min-width: 400px;
    max-height: 80vh; display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.preview-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid #e2e8f0; flex-shrink: 0;
}
.preview-header h3 { font-size: 16px; font-weight: 700; color: #333; }
.preview-header-actions { display: flex; gap: 8px; align-items: center; }
.preview-close {
    background: none; border: none; font-size: 20px;
    cursor: pointer; color: #999; padding: 4px 8px; border-radius: 6px;
}
.preview-close:hover { background: #f1f5f9; }
.preview-body {
    overflow: auto; flex: 1; padding: 20px 24px;
}
.preview-table {
    width: 100%; border-collapse: collapse; font-size: 12px; white-space: nowrap;
}
.preview-table th {
    text-align: left; padding: 8px 16px; color: #64748b; font-weight: 600;
    border-bottom: 2px solid #e2e8f0; font-size: 11px; background: #f8fafc;
    position: sticky; top: 0;
}
.preview-table td {
    padding: 8px 16px; border-bottom: 1px solid #f1f5f9; color: #334155;
}
.preview-table tr:hover td { background: #f8fafc; }
.preview-empty { text-align: center; color: #94a3b8; padding: 40px 20px; font-size: 13px; }

/* Callout */
.callout {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 8px;
    font-size: 13px; line-height: 1.6;
}
.callout-icon { flex-shrink: 0; font-size: 15px; line-height: 1; }
.callout-body { flex: 1; }
.callout-body strong { font-weight: 700; }
.callout-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.callout-warn { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.callout-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.callout-beta { background: #faf5ff; color: #6b21a8; border: 1px solid #e9d5ff; }
.callout .badge {
    display: inline-block; font-size: 10px; font-weight: 700;
    padding: 1px 6px; border-radius: 3px; vertical-align: middle; margin-right: 4px;
}
.callout-beta .badge { background: #e9d5ff; color: #7c3aed; }
