* {
    box-sizing: border-box;
}

:root {
    --bg: #f5f7fb;
    --panel: #ffffff;
    --panel-soft: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;
    --sidebar: #0f172a;
    --sidebar-soft: #111c33;
    --sidebar-line: rgba(255, 255, 255, .08);
    --line: #e2e8f0;
    --success: #15803d;
    --success-bg: #dcfce7;
    --warning: #b45309;
    --warning-bg: #fef3c7;
    --danger: #b91c1c;
    --danger-bg: #fee2e2;
    --neutral: #475569;
    --neutral-bg: #e2e8f0;
    --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
    --radius: 18px;
    --radius-lg: 26px;
}

*::selection {
    background: #bfdbfe;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 28rem),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.08), transparent 26rem),
        var(--bg);
    color: var(--text);
    line-height: 1.5;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

.app-shell {
    min-height: 100vh;
    display: flex;
}

.sidebar {
    width: 300px;
    background:
        linear-gradient(180deg, rgba(37, 99, 235, .12), transparent 18rem),
        var(--sidebar);
    color: white;
    padding: 22px;
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 20;
    border-right: 1px solid var(--sidebar-line);
    box-shadow: 18px 0 55px rgba(15, 23, 42, .12);
}

.brand {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 12px 8px 22px;
    border-bottom: 1px solid var(--sidebar-line);
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, #3b82f6, #06b6d4);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(37, 99, 235, .35);
}

.brand strong {
    font-size: 16px;
    letter-spacing: .01em;
}

.brand span,
.sidebar-footer span,
.sidebar-footer small {
    color: #cbd5e1;
    display: block;
    margin-top: 3px;
}

.nav {
    display: grid;
    gap: 7px;
    margin-top: 22px;
}

.nav a {
    color: #cbd5e1;
    padding: 12px 14px;
    border-radius: 14px;
    transition: .18s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 650;
    font-size: 14px;
}

.nav a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(203, 213, 225, .55);
    flex: 0 0 auto;
}

.nav a:hover,
.nav a.active {
    background: rgba(255, 255, 255, .09);
    color: #ffffff;
    transform: translateX(3px);
}

.nav a:hover::before,
.nav a.active::before {
    background: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, .16);
}

.sidebar-footer {
    margin-top: auto;
    padding: 18px;
    border: 1px solid var(--sidebar-line);
    background: rgba(255, 255, 255, .05);
    border-radius: 18px;
}

.sidebar-footer strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
}

.logout {
    display: inline-flex;
    margin-top: 14px;
    color: #fecaca;
    font-weight: 800;
}

.logout:hover {
    color: #ffffff;
}

.main {
    flex: 1;
    margin-left: 300px;
    padding: 28px;
}

.auth-main {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .86), rgba(30, 64, 175, .86)),
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, .25), transparent 24rem),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, .25), transparent 24rem);
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(226, 232, 240, .85);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.topbar h1 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.035em;
}

.topbar p {
    margin: 6px 0 0;
    color: var(--muted);
}

.menu-btn {
    display: none;
}

.card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    backdrop-filter: blur(12px);
}

.card h2 {
    margin: 0 0 16px;
    letter-spacing: -0.025em;
    font-size: 21px;
}

.card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.grid {
    display: grid;
    gap: 18px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 8px;
}

.stat::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .10);
}

.stat strong {
    font-size: 34px;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 1;
}

.stat span {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .07em;
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    color: #334155;
    font-weight: 750;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    padding: 12px 13px;
    font: inherit;
    background: white;
    color: var(--text);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

textarea {
    min-height: 116px;
    resize: vertical;
}

button,
.btn {
    border: none;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white;
    padding: 11px 16px;
    border-radius: 14px;
    font-weight: 850;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
    transition: .18s ease;
}

button:hover,
.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0284c7);
    color: white;
    transform: translateY(-1px);
}

.btn.secondary {
    background: #f1f5f9;
    color: #0f172a;
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

.btn.secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.btn.danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 10px 22px rgba(220, 38, 38, .20);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th,
td {
    padding: 14px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    font-size: 12px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .065em;
    background: #f8fafc;
    font-weight: 900;
}

tbody tr {
    transition: background .15s ease;
}

tbody tr:hover {
    background: #f8fafc;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    text-transform: capitalize;
}

.badge.success {
    background: var(--success-bg);
    color: var(--success);
}

.badge.warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.badge.danger {
    background: var(--danger-bg);
    color: var(--danger);
}

.badge.neutral {
    background: var(--neutral-bg);
    color: var(--neutral);
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 750;
    border: 1px solid transparent;
}

.alert.success {
    background: #ecfdf5;
    color: var(--success);
    border-color: #bbf7d0;
}

.alert.error {
    background: #fef2f2;
    color: var(--danger);
    border-color: #fecaca;
}

.auth-card {
    width: min(510px, 100%);
    background: rgba(255, 255, 255, .94);
    padding: 38px;
    border-radius: 32px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
    border: 1px solid rgba(255, 255, 255, .70);
    backdrop-filter: blur(16px);
}

.auth-card h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.auth-card p {
    color: var(--muted);
}

.search-box {
    margin-bottom: 14px;
    max-width: 520px;
}

.privacy-note {
    border-left: 4px solid var(--primary);
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    padding: 14px 15px;
    border-radius: 15px;
    color: #1e3a8a;
    font-weight: 650;
}

.timeline {
    display: grid;
    gap: 12px;
}

.timeline-item {
    border-left: 4px solid #cbd5e1;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 0 16px 16px 0;
}

.timeline-item strong {
    display: block;
}

.timeline-item small {
    color: var(--muted);
}

.tabs {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    background: white;
    border: 1px solid var(--line);
    padding: 8px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.tab-button {
    background: transparent;
    color: #334155;
    box-shadow: none;
    border: 1px solid transparent;
}

.tab-button:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: none;
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .20);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.inline-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    align-items: center;
}

.priority-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.priority-card {
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.priority-card::after {
    content: "";
    position: absolute;
    right: -24px;
    top: -24px;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .09);
}

.priority-card strong {
    display: block;
    font-size: 30px;
    margin-top: 6px;
    letter-spacing: -0.05em;
}

.priority-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.priority-card.urgent {
    border-left: 6px solid var(--danger);
}

.priority-card.warning {
    border-left: 6px solid var(--warning);
}

.priority-card.success {
    border-left: 6px solid var(--success);
}

.workflow-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    margin-bottom: 10px;
}

.workflow-step-number {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), #06b6d4);
    color: white;
    font-weight: 900;
    flex: 0 0 auto;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .22);
}

.case-priority-row {
    border-left: 6px solid #cbd5e1;
}

.case-priority-row.urgent {
    border-left-color: var(--danger);
}

.case-priority-row.high {
    border-left-color: #dc2626;
}

.case-priority-row.medium {
    border-left-color: var(--warning);
}

.case-priority-row.low {
    border-left-color: var(--success);
}

.checklist {
    display: grid;
    gap: 9px;
}

.checklist-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.checklist-item.done {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

pre {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    color: #334155;
}

@media print {
    .sidebar,
    .topbar,
    .menu-btn,
    .btn,
    button,
    .tabs {
        display: none !important;
    }

    .main {
        margin: 0;
        padding: 0;
    }

    .card {
        box-shadow: none;
        border: 1px solid #cbd5e1;
    }
}

@media (max-width: 1180px) {
    .priority-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 950px) {
    .sidebar {
        transform: translateX(-100%);
        transition: .22s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main {
        margin-left: 0;
        padding: 18px;
    }

    .menu-btn {
        display: inline-flex;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 650px) {
    .priority-strip {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 28px;
        border-radius: 26px;
    }

    .card {
        padding: 18px;
        border-radius: 22px;
    }

    th,
    td {
        padding: 12px;
    }
}


.brand-logo,
.content-logo,
.login-logo,
.settings-logo-preview,
.report-logo {
    display: block;
    object-fit: contain;
    background: white;
    border: 1px solid var(--line);
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    padding: 5px;
    box-shadow: 0 12px 30px rgba(37, 99, 235, .24);
    flex: 0 0 auto;
}

.content-logo {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    padding: 5px;
    flex: 0 0 auto;
}

.login-logo-wrap {
    margin-bottom: 18px;
}

.login-logo {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    padding: 7px;
    box-shadow: 0 18px 38px rgba(37, 99, 235, .22);
}

.settings-logo-preview {
    width: 92px;
    height: 92px;
    border-radius: 22px;
    padding: 8px;
}

.logo-fallback {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 950;
    border: none;
}

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

.report-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.print-report {
    background: white;
    color: #111827;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 2px solid #111827;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.report-logo {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    padding: 6px;
}

.report-header h1 {
    margin: 0;
    font-size: 24px;
}

.report-header p {
    margin: 2px 0;
    color: #475569;
}

.report-meta {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
}

.report-section {
    break-inside: avoid;
    margin-bottom: 20px;
}

.report-section h2 {
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 6px;
}

@media print {
    body {
        background: white !important;
        color: #111827;
    }

    .print-report {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    .report-toolbar {
        display: none !important;
    }

    .report-logo {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .table-wrap {
        border-radius: 0;
        border-color: #94a3b8;
    }

    th {
        background: #e5e7eb !important;
        color: #111827 !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}


/* Mobile app readiness and responsive flow */
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
}

.sidebar-scrim {
    display: none;
}

.mobile-bottom-nav {
    display: none;
}

.install-app-button {
    position: fixed;
    right: 18px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    z-index: 80;
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .22);
}

input,
select,
textarea,
button,
.btn {
    min-height: 44px;
}

.topbar-title {
    min-width: 0;
}

.topbar-title h1,
.topbar-title p {
    overflow-wrap: anywhere;
}

.table-wrap {
    -webkit-overflow-scrolling: touch;
}

.table-wrap::after {
    content: "Swipe horizontally to view more";
    display: none;
    padding: 8px 12px;
    color: var(--muted);
    font-size: 12px;
    background: #f8fafc;
    border-top: 1px solid var(--line);
}

@media (max-width: 950px) {
    body.sidebar-open {
        overflow: hidden;
    }

    .app-shell {
        display: block;
        min-height: 100dvh;
    }

    .sidebar {
        width: min(88vw, 330px);
        padding: 18px;
        overflow-y: auto;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .sidebar-scrim {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, .52);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: .2s ease;
        z-index: 19;
    }

    .sidebar-scrim.open {
        opacity: 1;
        pointer-events: auto;
    }

    .main {
        padding: 14px;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .topbar {
        position: sticky;
        top: 0;
        z-index: 15;
        margin: -6px -6px 16px;
        border-radius: 0 0 24px 24px;
        padding: 14px;
        background: rgba(255,255,255,.92);
    }

    .topbar-title {
        gap: 10px;
    }

    .content-logo {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .topbar h1 {
        font-size: 21px;
        line-height: 1.12;
    }

    .topbar p {
        font-size: 12px;
        margin-top: 3px;
    }

    .menu-btn {
        min-width: 88px;
        padding: 10px 12px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .card {
        padding: 16px;
        margin-bottom: 14px;
        border-radius: 20px;
    }

    .card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .grid,
    .form-grid {
        gap: 12px;
    }

    .priority-strip {
        gap: 10px;
        margin-bottom: 14px;
    }

    .priority-card {
        padding: 14px;
        border-radius: 18px;
    }

    .priority-card strong {
        font-size: 25px;
    }

    .tabs {
        position: sticky;
        top: 84px;
        z-index: 12;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 7px;
        margin-left: -4px;
        margin-right: -4px;
        -webkit-overflow-scrolling: touch;
    }

    .tab-button {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 18;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2px;
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .95);
        border-top: 1px solid var(--line);
        box-shadow: 0 -10px 30px rgba(15, 23, 42, .10);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav a {
        color: var(--muted);
        display: grid;
        place-items: center;
        gap: 2px;
        padding: 7px 4px;
        border-radius: 14px;
        font-weight: 800;
        min-width: 0;
    }

    .mobile-bottom-nav a span {
        font-size: 18px;
        line-height: 1;
    }

    .mobile-bottom-nav a small {
        font-size: 10px;
        line-height: 1.1;
    }

    .mobile-bottom-nav a.active {
        color: var(--primary);
        background: var(--primary-soft);
    }

    .auth-main {
        padding: 14px;
        align-items: start;
        padding-top: 42px;
        min-height: 100dvh;
    }

    .auth-card {
        padding: 24px;
        width: min(100%, 480px);
    }

    .auth-card h1 {
        font-size: 23px;
    }

    .login-logo {
        width: 64px;
        height: 64px;
    }

    .table-wrap::after {
        display: block;
    }
}

@media (max-width: 760px) {
    .grid-2,
    .grid-3,
    .grid-4,
    .form-grid,
    .priority-strip {
        grid-template-columns: 1fr !important;
    }

    .stat {
        min-height: 104px;
    }

    .inline-actions {
        align-items: stretch;
    }

    .inline-actions .btn,
    .inline-actions button {
        flex: 1 1 auto;
    }

    .report-toolbar {
        align-items: stretch;
    }

    .report-toolbar > div,
    .report-toolbar .btn,
    .report-toolbar button {
        width: 100%;
    }

    .workflow-step {
        padding: 12px;
        border-radius: 16px;
    }

    .checklist-item {
        display: grid;
        gap: 10px;
    }

    .checklist-item form,
    .checklist-item button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .topbar {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .topbar-title {
        align-items: flex-start;
    }

    .content-logo {
        display: none;
    }

    th,
    td {
        padding: 11px 12px;
        font-size: 13px;
    }

    input,
    select,
    textarea {
        font-size: 16px; /* prevents iOS zoom */
    }

    .badge {
        font-size: 11px;
    }

    .mobile-bottom-nav {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .mobile-bottom-nav a small {
        font-size: 9.5px;
    }
}

/* Make wide data tables more comfortable on touch screens */
@media (max-width: 700px) {
    .table-wrap table {
        min-width: 760px;
    }

    .table-wrap.compact-mobile table {
        min-width: 0;
    }
}
