.copy-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 16px; }
.copy-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.copy-card h3 { margin: 0; font-size: 17px; letter-spacing: -.02em; }
.copy-desc { color: var(--fg-secondary); font-size: 13px; line-height: 1.6; }
.copy-text { max-height: 260px; margin: 16px 0; padding: 16px; overflow-y: auto; white-space: pre-wrap; color: var(--fg-secondary); background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 12px; line-height: 1.65; }

.admin-grid { align-items: start; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { color: var(--fg-secondary); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.admin-table th, .admin-table td { padding: 10px 8px; border-bottom: 1px solid var(--border); }
.admin-table tr:hover { background: var(--surface-alt); }
.admin-action-btn { min-height: 32px; padding: 0 9px; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--fg-secondary); background: var(--surface); cursor: pointer; }

.toast-container { position: fixed; right: 20px; bottom: 20px; z-index: var(--z-toast); width: min(390px,calc(100vw - 32px)); display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { padding: 14px; color: var(--fg); background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-md); box-shadow: var(--shadow-md); pointer-events: auto; }
.toast--success { border-color: color-mix(in oklch,var(--green) 45%,var(--border)); }
.toast--error { border-color: color-mix(in oklch,var(--red) 45%,var(--border)); }
.toast__header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.toast__title { font-size: 13px; font-weight: 800; }
.toast__message { margin-top: 4px; color: var(--fg-secondary); font-size: 12px; line-height: 1.5; }
.toast__click-hint { min-height: 32px; margin-top: 6px; padding: 0; color: var(--accent); background: transparent; border: 0; font: inherit; font-size: 10px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.toast__close { min-width: 32px; min-height: 32px; border: 0; border-radius: 50%; background: var(--surface-alt); cursor: pointer; }

.skeleton-card { padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); }
.skeleton-box { position: relative; overflow: hidden; background: var(--surface-alt); border-radius: var(--radius-sm); }
.skeleton-box::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,oklch(1 0 0 / .6),transparent); transform: translateX(-100%); animation: shimmer 1.5s infinite; }
.skeleton-title { width: 55%; height: 18px; margin-bottom: 14px; }
.skeleton-text { width: 100%; height: 11px; margin-bottom: 8px; }
.skeleton-text-short { width: 62%; height: 11px; margin-bottom: 18px; }
.skeleton-button { width: 100%; height: 36px; }
@keyframes shimmer { to { transform: translateX(100%); } }

#manual-dropzone { display: block; }
#manual-file-name:empty { display: none; }
#wa-qr-container { color: var(--fg); }
#campaign-log { color: var(--fg-secondary) !important; background: var(--surface-alt) !important; border-color: var(--border) !important; }

.ticket__source-badge, .status-pill { white-space: nowrap; }
.status-pill { padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 750; }
.status-pill--approved { color: var(--green); background: var(--green-soft); }
.status-pill--pending { color: var(--orange); background: var(--orange-soft); }
