/* ═══════════════════════════════════════════════════════════════════════════
   DATEV → ADDISON Konverter – Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --bg-primary: #0f1117;
    --bg-secondary: #161822;
    --bg-card: #1c1f2e;
    --bg-card-hover: #222538;
    --bg-elevated: #252840;

    --text-primary: #e8eaf0;
    --text-secondary: #9497aa;
    --text-muted: #6b6e80;

    --accent: #6c5ce7;
    --accent-hover: #7c6ff0;
    --accent-glow: rgba(108, 92, 231, 0.25);
    --accent-soft: rgba(108, 92, 231, 0.12);

    --success: #00cec9;
    --success-soft: rgba(0, 206, 201, 0.15);
    --warning: #fdcb6e;
    --warning-soft: rgba(253, 203, 110, 0.15);
    --error: #ff6b6b;
    --error-soft: rgba(255, 107, 107, 0.15);

    --soll: #74b9ff;
    --haben: #a29bfe;

    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[hidden] {
    display: none !important;
}

html {
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ─── App Layout ────────────────────────────────────────────────────────── */

.app-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── Header ────────────────────────────────────────────────────────────── */

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #a29bfe);
    border-radius: var(--radius-md);
    color: white;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.header-badge {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

/* ─── Cards (Sections) ──────────────────────────────────────────────────── */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
    transition: border-color var(--transition);
}

.card:hover {
    border-color: var(--border-light);
}

.card-header {
    margin-bottom: 20px;
}

.card-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-header h2 svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ─── Dropzone ──────────────────────────────────────────────────────────── */

.dropzone {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.dropzone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-soft), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.dropzone:hover,
.dropzone.drag-over {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.dropzone:hover::before,
.dropzone.drag-over::before {
    opacity: 1;
}

.dropzone-content {
    position: relative;
    z-index: 1;
}

.dropzone-icon {
    color: var(--text-muted);
    margin-bottom: 16px;
    transition: color var(--transition), transform var(--transition);
}

.dropzone:hover .dropzone-icon,
.dropzone.drag-over .dropzone-icon {
    color: var(--accent);
    transform: translateY(-4px);
}

.dropzone-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dropzone-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dropzone-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.link-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.link-btn:hover {
    color: var(--accent-hover);
}

/* ─── File Info ─────────────────────────────────────────────────────────── */

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.file-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-icon:hover {
    color: var(--error);
    background: var(--error-soft);
}

/* ─── Loading / Spinner ─────────────────────────────────────────────────── */

.loading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px 24px;
}

.loading-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─── Error ─────────────────────────────────────────────────────────────── */

.error-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 36px 24px;
    text-align: center;
}

.error-icon {
    color: var(--error);
}

.error-text {
    color: var(--error);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ─── Stats Grid ────────────────────────────────────────────────────────── */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.stat-card:hover {
    border-color: var(--border-light);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.stat-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-highlight {
    color: var(--accent);
    font-size: 1.3rem;
}

/* ─── Warnings ──────────────────────────────────────────────────────────── */

.warnings {
    padding: 14px 16px;
    background: var(--warning-soft);
    border: 1px solid rgba(253, 203, 110, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 8px;
}

.warnings ul {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.warnings li {
    padding: 2px 0;
}

.warnings li::before {
    content: '⚠ ';
}

/* ─── Booking Table ─────────────────────────────────────────────────────── */

.table-container {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.booking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.booking-table thead {
    background: var(--bg-elevated);
}

.booking-table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.booking-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    white-space: nowrap;
}

.booking-table tbody tr {
    transition: background var(--transition);
}

.booking-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.booking-table tbody tr:last-child td {
    border-bottom: none;
}

.cell-nr { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.cell-datum { font-variant-numeric: tabular-nums; color: var(--text-primary); }
.cell-konto { font-weight: 500; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.cell-betrag { text-align: right; font-weight: 600; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.cell-bu { text-align: center; color: var(--text-muted); }
.cell-text {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px;
}

.badge-soll {
    background: rgba(116, 185, 255, 0.15);
    color: var(--soll);
}

.badge-haben {
    background: rgba(162, 155, 254, 0.15);
    color: var(--haben);
}

.table-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    padding: 4px 0;
}

/* ─── Overrides ─────────────────────────────────────────────────────────── */

.overrides-section {
    margin: 20px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.overrides-section summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    transition: all var(--transition);
    list-style: none;
}

.overrides-section summary::-webkit-details-marker { display: none; }

.overrides-section summary::after {
    content: '▸';
    margin-left: auto;
    transition: transform var(--transition);
    font-size: 0.7rem;
}

.overrides-section[open] summary::after {
    transform: rotate(90deg);
}

.overrides-section summary:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.overrides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    padding: 16px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.85rem;
    transition: border-color var(--transition);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #7c6ff0);
    color: white;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), #8b80f5);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    background: var(--accent-soft);
}

.convert-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.export-buttons {
    display: flex;
    gap: 10px;
}

.btn-accent {
    background: linear-gradient(135deg, #00cec9, #00b894);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 206, 201, 0.25);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #00d4cf, #00c49a);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 206, 201, 0.3);
}

.btn-accent:active {
    transform: translateY(0);
}

/* ─── Success ───────────────────────────────────────────────────────────── */

.success-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 24px;
    text-align: center;
}

.success-icon {
    color: var(--success);
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--success);
}

.success-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */

.app-footer {
    margin-top: auto;
    padding: 24px 0 8px;
    text-align: center;
}

.app-footer p {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ─── Mode Tabs ─────────────────────────────────────────────────────────── */

.mode-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.mode-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.mode-tab:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.mode-tab.active {
    border-color: var(--accent);
    color: var(--text-primary);
    background: var(--accent-soft);
    box-shadow: 0 0 0 1px var(--accent-glow);
}

.mode-tab svg { flex-shrink: 0; }

/* ─── Card Description ──────────────────────────────────────────────────── */

.card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* ─── Multi-File List ───────────────────────────────────────────────────── */

.multi-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.multi-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.multi-file-item .file-icon { color: var(--accent); flex-shrink: 0; }
.multi-file-item .file-name { font-size: 0.85rem; font-weight: 500; }
.multi-file-item .file-size { font-size: 0.72rem; color: var(--text-muted); }

/* ─── Checkbox Group ────────────────────────────────────────────────────── */

.checkbox-group {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

/* ─── Stapel Accordion ──────────────────────────────────────────────────── */

.stapel-accordion {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stapel-accordion summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-elevated);
    list-style: none;
    transition: all var(--transition);
}

.stapel-accordion summary::-webkit-details-marker { display: none; }

.stapel-accordion summary::after {
    content: '▸';
    margin-left: auto;
    transition: transform var(--transition);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.stapel-accordion[open] summary::after { transform: rotate(90deg); }
.stapel-accordion summary:hover { background: var(--bg-card-hover); }

.stapel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #a29bfe);
    color: white;
    border-radius: 6px;
    flex-shrink: 0;
}

.stapel-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: auto;
    padding-right: 12px;
}

.stapel-accordion .table-container {
    margin: 0;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
}

.stapel-accordion .table-hint {
    padding: 8px 16px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

/* ─── Section Subtitle ──────────────────────────────────────────────────── */

.section-subtitle {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    margin-top: 4px;
}

/* ─── Stat Variants ─────────────────────────────────────────────────────── */

.stat-warning { color: var(--warning); }
.stat-success { color: var(--success); }
.text-warning { color: var(--warning); font-weight: 600; }

/* ─── 9999 Row Highlight ────────────────────────────────────────────────── */

.row-9999 td {
    background: rgba(253, 203, 110, 0.06);
    color: var(--warning) !important;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .app-container {
        padding: 12px;
    }

    .app-header {
        padding: 12px 16px;
    }

    .logo h1 {
        font-size: 1.05rem;
    }

    .card {
        padding: 20px 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .convert-actions {
        flex-direction: column;
    }

    .convert-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .overrides-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Verification Report ──────────────────────────────────────────────── */

.verify-report {
    margin-top: 1.5rem;
    text-align: left;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.verify-verdict {
    margin-bottom: 1.5rem;
}

.verdict-pass {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.verdict-pass p {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
    width: 100%;
    margin: 4px 0 0 36px;
}

.verdict-fail {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    color: var(--error);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.verdict-fail p {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
    width: 100%;
    margin: 4px 0 0 36px;
}

.verify-section {
    margin-bottom: 1.25rem;
}

.verify-section h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.verify-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.verify-table th {
    text-align: right;
    padding: 6px 12px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.verify-table th:first-child {
    text-align: left;
}

.verify-table td {
    padding: 6px 12px;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.verify-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-secondary);
}

.verify-stat-good {
    color: var(--success);
    font-weight: 500;
    margin-top: 0.5rem;
}

.verify-stat-bad {
    color: var(--error);
    font-weight: 600;
}

.row-diff td {
    color: var(--error);
}

.cell-diff {
    font-weight: 700;
}

/* ─── Verify Accordion (collapsible sections) ────────────────────────── */

.verify-accordion {
    display: block;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: transparent;
}

.verify-accordion summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-elevated);
    list-style: none;
    transition: all var(--transition);
    user-select: none;
}

.verify-accordion summary::-webkit-details-marker {
    display: none;
}

.verify-accordion summary::before {
    content: '▸';
    margin-right: 4px;
    transition: transform var(--transition);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.verify-accordion[open] summary::before {
    transform: rotate(90deg);
}

.verify-accordion summary:hover {
    background: var(--bg-card-hover);
}

.verify-accordion .verify-section {
    padding: 12px 16px;
    margin-bottom: 0;
    border-top: 1px solid var(--border);
    background: transparent;
}

.verify-accordion .verify-section h3 {
    display: none;
}
