/* ======================================
   RISCONT DOC SCANNER – SITE STYLES
   Orak Engineering brand palette
   Navy #0D1B3E  |  Orange #E8651A
   ====================================== */

:root {
    --navy: #0D1B3E;
    --navy-mid: #162550;
    --navy-light: #1E3470;
    --orange: #E8651A;
    --orange-dark: #C4521A;
    --orange-light: #FF8040;
    --white: #FFFFFF;
    --off-white: #F4F6FA;
    --gray-100: #EEF1F7;
    --gray-200: #D8DDE9;
    --gray-400: #8A95B0;
    --gray-600: #4A5470;
    --text: #1A2240;
    --text-light: #5A6480;
    --success: #22C55E;
    --error: #EF4444;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(13,27,62,.08), 0 1px 2px rgba(13,27,62,.06);
    --shadow: 0 4px 16px rgba(13,27,62,.10), 0 2px 4px rgba(13,27,62,.08);
    --shadow-lg: 0 12px 40px rgba(13,27,62,.16), 0 4px 12px rgba(13,27,62,.10);
}

/* ---- RESET / BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

a {
    color: var(--orange);
    text-decoration: none;
}

    a:hover {
        color: var(--orange-dark);
    }

/* ======================================
   HEADER
   ====================================== */
.site-header {
    background: var(--navy);
    border-bottom: 3px solid var(--orange);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Nav */
.main-nav {
    display: flex;
    gap: 4px;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    color: var(--gray-200);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all .18s;
    text-decoration: none;
}

    .nav-link svg {
        width: 16px;
        height: 16px;
        opacity: 0.7;
    }

    .nav-link:hover {
        background: rgba(255,255,255,.08);
        color: var(--white);
    }

    .nav-link.active {
        background: rgba(232,101,26,.15);
        color: var(--orange-light);
    }

        .nav-link.active svg {
            opacity: 1;
        }

/* Header actions */
.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-email {
    color: var(--gray-200);
    font-size: 0.8rem;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: var(--gray-400);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all .18s;
}

    .btn-logout svg {
        width: 14px;
        height: 14px;
    }

    .btn-logout:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

.btn-primary-sm {
    padding: 7px 18px;
    background: var(--orange);
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background .18s;
}

    .btn-primary-sm:hover {
        background: var(--orange-dark);
        color: white;
    }

/* ======================================
   MAIN / FOOTER
   ====================================== */
.site-main {
    flex: 1;
    padding: 40px 24px;
}

.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.8rem;
}

    .footer-links a:hover {
        color: var(--orange);
    }

/* ======================================
   PAGE CONTAINERS
   ====================================== */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 32px;
}

.page-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ======================================
   CARD
   ====================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.card-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .card-header-icon svg {
        width: 18px;
        height: 18px;
        color: white;
    }

.card-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.card-body {
    padding: 28px;
}

/* ======================================
   AUTH PAGES (centered layout)
   ====================================== */
.auth-page {
    min-height: calc(100vh - 64px - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.auth-box {
    width: 100%;
    max-width: 440px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

    .auth-logo-icon svg {
        width: 36px;
        height: 36px;
    }

.auth-logo-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy);
}

.auth-logo-sub {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    padding: 36px 36px 32px;
}

.auth-heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.auth-subheading {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

/* ======================================
   FORM ELEMENTS
   ====================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color .18s, box-shadow .18s;
    outline: none;
}

    .form-control:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(232,101,26,.12);
    }

    .form-control.input-validation-error {
        border-color: var(--error);
    }

.field-validation-error {
    display: block;
    font-size: 0.78rem;
    color: var(--error);
    margin-top: 4px;
}

/* form-input alias (same as form-control) */
.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color .18s, box-shadow .18s;
    outline: none;
}

    .form-input:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(232,101,26,.12);
    }

    .form-input.input-validation-error {
        border-color: var(--error);
    }

/* btn-sm variant */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.83rem;
}

/* btn-secondary */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: .875rem;
    border: 1.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    white-space: nowrap;
}

    .btn-secondary:hover {
        background: var(--navy);
        color: white;
    }

/* breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: .85rem;
    color: var(--text-light);
}

    .breadcrumb a {
        color: var(--orange);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb svg {
        color: var(--gray-400);
    }

/* page-hero strip */
.page-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.page-hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
}

.page-hero-sub {
    font-size: .88rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* scans-table (shared) */
.scans-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}

    .scans-table thead th {
        padding: 12px 16px;
        text-align: left;
        font-size: .75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--gray-400);
        border-bottom: 1px solid var(--gray-100);
        background: var(--off-white);
    }

    .scans-table tbody td {
        padding: 12px 16px;
        border-bottom: 1px solid var(--gray-100);
        color: var(--text);
        vertical-align: middle;
    }

    .scans-table tbody tr:last-child td {
        border-bottom: none;
    }

    .scans-table tbody tr:hover td {
        background: rgba(13,27,62,.02);
    }

.th-actions {
    width: 90px;
    text-align: right;
}

.td-actions {
    text-align: right;
}

.td-id {
    color: var(--gray-400);
    font-size: .8rem;
    width: 50px;
}

/* action buttons */
.actions-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.act-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: none;
    background: transparent;
    color: var(--gray-400);
    cursor: pointer;
    transition: all .13s;
    text-decoration: none;
    padding: 0;
}

    .act-btn svg {
        width: 15px;
        height: 15px;
    }

    .act-btn:hover {
        background: var(--gray-100);
        color: var(--navy);
    }

/* row states */
.row-error td {
    background: rgba(239,68,68,.03);
}

/* form-select-sm */
.form-select-sm {
    padding: 5px 10px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: .82rem;
    font-family: inherit;
    color: var(--navy);
    background: white;
    cursor: pointer;
    outline: none;
}

    .form-select-sm:focus {
        border-color: var(--orange);
    }

/* File input */
.file-drop {
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all .22s;
    position: relative;
    background: var(--off-white);
}

    .file-drop:hover,
    .file-drop.drag-over {
        border-color: var(--orange);
        background: rgba(232,101,26,.04);
    }

    .file-drop input[type="file"] {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

.file-drop-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(232,101,26,.15) 0%, rgba(232,101,26,.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .file-drop-icon svg {
        width: 26px;
        height: 26px;
        color: var(--orange);
    }

.file-drop-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.file-drop-hint {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ======================================
   BUTTONS
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all .18s;
    text-decoration: none;
    white-space: nowrap;
}

    .btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(232,101,26,.30);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
        box-shadow: 0 6px 20px rgba(232,101,26,.40);
        color: white;
        transform: translateY(-1px);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
}

    .btn-outline:hover {
        border-color: var(--navy);
        background: var(--off-white);
    }

.btn-full {
    width: 100%;
}

.provider-icon-gemini {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #EA4335 100%);
    color: #fff;
}

/* ======================================
   ALERTS
   ====================================== */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .alert svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 1px;
    }

.alert-error {
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FCA5A5;
}

.alert-success {
    background: #F0FDF4;
    color: #15803D;
    border: 1px solid #86EFAC;
}

.alert-info {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #93C5FD;
}

/* ======================================
   RESULT PANEL
   ====================================== */
.result-panel {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.result-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.result-field {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 14px 16px;
    border: 1px solid var(--gray-100);
}

.result-field-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.result-field-value {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

    .result-field-value.empty {
        color: var(--gray-400);
        font-style: italic;
        font-weight: 400;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
    }

.json-block {
    background: var(--navy);
    color: #A8D8FF;
    border-radius: var(--radius);
    padding: 20px;
    font-family: 'Cascadia Code', 'Fira Code', 'Courier New', monospace;
    font-size: 0.75rem;
    line-height: 1.7;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 500px;
    white-space: pre;
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

    .status-badge.done {
        background: #D1FAE5;
        color: #065F46;
    }

    .status-badge.pending {
        background: #FEF9C3;
        color: #854D0E;
    }

    .status-badge.error {
        background: #FEE2E2;
        color: #991B1B;
    }

.token-usage-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 8px 14px;
    background: #f0f4ff;
    border-left: 3px solid #6366f1;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #374151;
}

.token-usage-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #6366f1;
}

.token-usage-detail strong {
    color: #111827;
}

/* ======================================
   LOADING SPINNER
   ====================================== */
.spinner-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,27,62,.5);
    z-index: 999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

    .spinner-overlay.active {
        display: flex;
    }

.spinner-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.spinner {
    width: 44px;
    height: 44px;
    border: 4px solid var(--gray-100);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner-text {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

.spinner-sub {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ======================================
   INVITE / INFO BOX
   ====================================== */
.invite-link-box {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-top: 20px;
}

.invite-link-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.invite-link-value {
    font-size: 0.82rem;
    color: var(--navy-mid);
    word-break: break-all;
    font-family: 'Cascadia Code', monospace;
}

/* ======================================
   SECTION DIVIDER
   ====================================== */
.divider {
    height: 1px;
    background: var(--gray-100);
    margin: 24px 0;
}

/* ======================================
   PAGE HERO STRIP
   ====================================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

    .page-hero::after {
        content: '';
        position: absolute;
        right: -40px;
        top: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(232,101,26,.12);
        pointer-events: none;
    }

.page-hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.page-hero-sub {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
        gap: 16px;
    }

    .user-email {
        display: none;
    }

    .result-panel {
        grid-template-columns: 1fr;
    }

    .result-field-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 24px 20px;
    }

    .site-main {
        padding: 24px 16px;
    }
}

/* ── VAT validation card ─────────────────────────────────────────────── */
.vat-validation-card {
    padding: 10px 16px;
    margin-bottom: 10px;
}

.vat-validation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vat-status-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vat-info-text {
    font-size: .8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vat-toggle-block {
    flex-shrink: 0;
}

.vat-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
}

/* ── Badges ──────────────────────────────────────────────────────────── */
.vat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 12px;
}

.vat-badge-ok {
    background: #D1FAE5;
    color: #065F46;
}

.vat-badge-warn {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.vat-badge-neutral {
    background: var(--bg-page);
    color: var(--text-light);
    border: 1px solid var(--gray-200);
}

/* ── Детайлен warning ─────────────────────────────────────────────────── */
.vat-diff-detail {
    margin-top: 7px;
    padding: 7px 10px;
    background: #FFFBEB;
    border-left: 3px solid #F59E0B;
    border-radius: 4px;
    font-size: .79rem;
    color: #78350F;
}

/* ── ДДС ставка pills ─────────────────────────────────────────────────── */
.vat-rate-pill {
    display: inline-flex;
    align-items: center;
    font-size: .72rem;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 10px;
    background: #EDE9FE;
    color: #5B21B6;
}

.vat-rate-pill-sm {
    display: inline-flex;
    font-size: .72rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 8px;
    background: #EDE9FE;
    color: #5B21B6;
}

/* ── Колона ДДС% в таблицата ─────────────────────────────────────────── */
.audit-col-vat {
    min-width: 52px;
    max-width: 60px;
}