/* premium.css - Premium Dark Dashboard Theme */
html, body {
    background-color: #0b0f19 !important; /* scuro slate forzato */
    color: #e2e8f0 !important;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #f8fafc;
}

.text-white {
    color: #f8fafc !important;
}

.text-dark {
    color: #0f172a !important;
}

/* CARDS */
.card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 20px;
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px 12px 0 0 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* GRADIENTS FOR HEADERS */
.card-header.bg-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

/* PANELS COLORS */
h6.rounded {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.bg-light { background-color: #334155 !important; color: #f8fafc !important; }
.bg-success { background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important; }
.bg-secondary { background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important; }
.bg-primary { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important; }
.bg-info { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important; }
.bg-warning { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important; }

/* FORMS */
.form-label {
    color: #cbd5e1; /* Più chiaro di 94a3b8 per migliore contrasto */
    margin-bottom: 0.2rem;
}
.form-control, .form-select {
    background-color: #0f172a;
    border: 1px solid #334155;
    color: #f1f5f9;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    background-color: #1e293b;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
    color: #fff;
}
.form-control:disabled, .form-control[readonly] {
    background-color: rgba(15, 23, 42, 0.5);
    color: #64748b;
    opacity: 1;
}

/* BUTTONS */
.btn-dark {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border: none;
}
.btn-dark:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}
.btn-success { background: linear-gradient(135deg, #10b981 0%, #059669 100%); border: none; }
.btn-success:hover { background: linear-gradient(135deg, #34d399 0%, #10b981 100%); }
.btn-danger { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); border: none; }
.btn-danger:hover { background: linear-gradient(135deg, #f87171 0%, #ef4444 100%); }

/* TABLES / GRIDS */
.table {
    color: #e2e8f0;
}
.table-bordered { border-color: rgba(255, 255, 255, 0.05); }
.table-bordered th, .table-bordered td { border-color: rgba(255, 255, 255, 0.05); }

.table-light { background-color: #1e293b !important; color: #f8fafc !important; }
.table-light th { background-color: #1e293b !important; color: #94a3b8 !important; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }

tbody tr { transition: background-color 0.2s ease, transform 0.2s ease; }
tbody tr:hover { transform: scale(1.002); }

/* GRID ROW COLORS FOR DARK MODE */
.row-state-founded-payout { background-color: rgba(16, 185, 129, 0.15) !important; color: #34d399 !important; }
.row-state-bruciata { background-color: rgba(239, 68, 68, 0.15) !important; color: #f87171 !important; }
.row-state-founded { background-color: rgba(245, 158, 11, 0.15) !important; color: #fbbf24 !important; }
.row-state-fase2 { background-color: rgba(59, 130, 246, 0.15) !important; color: #60a5fa !important; }

/* DELTA GRID SPECIFIC CLASSES */
.delta-row-positive { 
    background-color: rgba(16, 185, 129, 0.1) !important; 
    color: #10b981 !important;
    border-left: 3px solid #10b981;
}
.delta-row-negative { 
    background-color: rgba(239, 68, 68, 0.1) !important; 
    color: #f87171 !important;
    border-left: 3px solid #ef4444;
}
.delta-table thead th {
    background-color: #0f172a !important;
    color: #94a3b8 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* DOCUMENTATION CONTRAST BOOST */
.text-muted {
    color: #94a3b8 !important; /* Forza un grigio più leggibile in dark mode */
}
.glass-card .text-muted {
    color: #cbd5e1 !important; /* Ancora più chiaro dentro le card per compensare il blur */
}

/* BADGES */
.badge { font-weight: 500; padding: 0.4em 0.6em; border-radius: 4px; }
.badge.bg-success { background-color: rgba(16, 185, 129, 0.2) !important; color: #34d399 !important; border: 1px solid rgba(16, 185, 129, 0.4); }
.badge.bg-danger { background-color: rgba(239, 68, 68, 0.2) !important; color: #f87171 !important; border: 1px solid rgba(239, 68, 68, 0.4); }
.badge.bg-info { background-color: rgba(14, 165, 233, 0.2) !important; color: #38bdf8 !important; border: 1px solid rgba(14, 165, 233, 0.4); }
.badge.bg-secondary { background-color: rgba(100, 116, 139, 0.2) !important; color: #94a3b8 !important; border: 1px solid rgba(100, 116, 139, 0.4); }

/* CUSTOM SCROLLBAR FOR MODERN LOOK */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* SIDEBAR / NAVBAR OVERRIDES */
.sidebar {
    background: rgba(15, 23, 42, 0.95) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.sidebar .top-row {
    background: rgba(30, 41, 59, 1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #e2e8f0 !important;
    letter-spacing: 1px;
}
.nav-link {
    color: #94a3b8 !important;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 0.8rem 1rem !important;
    margin: 0.5rem 1rem;
}
.nav-link:hover {
    background: rgba(56, 189, 248, 0.1) !important;
    color: #38bdf8 !important;
}
.nav-link.active {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
}
.nav-link.active i {
    color: #fff !important;
}
.nav-item i {
    transition: color 0.3s ease;
}

/* FIELD INFO POPOVERS */
.field-label-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.2rem;
}
.field-label-row .form-label {
    margin-bottom: 0;
}
.field-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 20;
}
.field-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #7dd3fc;
    line-height: 1;
}
.field-info-btn:hover,
.field-info-btn:focus-visible {
    color: #bae6fd;
    outline: none;
}
.field-info-popover {
    position: absolute;
    left: 1.35rem;
    top: -0.35rem;
    width: 240px;
    max-width: min(240px, 72vw);
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 8px;
    background: #020617;
    color: #e2e8f0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
    font-size: 0.76rem;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0;
    white-space: normal;
}
/* MATH-FRIENDLY SIMULATOR */
.math-friendly-page .summary-box,
.prop-cycles-page .summary-box {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    min-height: 84px;
}
.math-friendly-page .summary-label,
.prop-cycles-page .summary-label {
    color: #94a3b8;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.math-friendly-page .summary-value,
.prop-cycles-page .summary-value {
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}
.math-friendly-page .summary-sub,
.prop-cycles-page .summary-sub {
    color: #94a3b8;
    font-size: 0.78rem;
}
.math-friendly-page .summary-success,
.prop-cycles-page .summary-success { border-color: rgba(16, 185, 129, 0.35); }
.math-friendly-page .summary-danger,
.prop-cycles-page .summary-danger { border-color: rgba(239, 68, 68, 0.35); }
.math-friendly-page .summary-info,
.prop-cycles-page .summary-info { border-color: rgba(14, 165, 233, 0.35); }
.math-status {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.78);
}
.math-status.status-success { border-color: rgba(16, 185, 129, 0.45); background: rgba(16, 185, 129, 0.10); }
.math-status.status-danger { border-color: rgba(239, 68, 68, 0.45); background: rgba(239, 68, 68, 0.10); }
.math-status.status-warning { border-color: rgba(245, 158, 11, 0.45); background: rgba(245, 158, 11, 0.10); }
.math-status.status-live { border-color: rgba(14, 165, 233, 0.35); }
.math-table th,
.math-table td {
    white-space: nowrap;
}
.math-table .form-control,
.math-table .form-select {
    min-width: 74px;
}
.scenario-panel {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.35);
}
.scenario-title {
    padding: 0.75rem 0.9rem;
    background: rgba(15, 23, 42, 0.75);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    color: #f8fafc;
    font-weight: 700;
}
.scenario-click {
    cursor: pointer;
}
.scenario-click:hover td {
    background: rgba(14, 165, 233, 0.08);
}
.scenario-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    margin-right: 0.35rem;
    color: #38bdf8;
    font-weight: 700;
}
.scenario-detail-row > td {
    padding: 0 !important;
    background: rgba(2, 6, 23, 0.34);
}
.scenario-detail {
    padding: 0.8rem;
}
.scenario-detail-title {
    margin-bottom: 0.6rem;
    color: #cbd5e1;
    font-weight: 700;
}
/* GOAL OPTIMIZER */
.goal-optimizer-page {
    max-width: 1800px;
}
.goal-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0 0.15rem;
}
.goal-eyebrow,
.goal-section-label {
    color: #38bdf8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.goal-section-label {
    margin: 0.25rem 0 0.65rem;
}
.goal-header h1 {
    font-size: clamp(1.7rem, 2vw, 2.45rem);
}
.goal-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.goal-count,
.goal-card-count {
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 8px;
    background: rgba(14, 165, 233, 0.08);
    color: #bae6fd;
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
    white-space: nowrap;
}
.goal-count span {
    color: #f8fafc;
    font-weight: 800;
    margin-right: 0.25rem;
}
.goal-input-grid .card {
    margin-bottom: 0;
}
.goal-input-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.goal-input-card .card-header span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    color: #f8fafc;
    font-size: 0.72rem;
    font-weight: 800;
}
.goal-focus-card {
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.18), 0 14px 36px rgba(14, 165, 233, 0.08);
}
.goal-constraint-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
}
.goal-constraint-strip > div {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.62);
    padding: 0.75rem 0.85rem;
}
.goal-chip-label {
    display: block;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.goal-constraint-strip strong {
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
}
.goal-empty-state .math-status {
    align-items: center;
}
.goal-result-card,
.goal-plan-card,
.goal-alternatives-card {
    border-color: rgba(56, 189, 248, 0.18);
}
.goal-result-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 1rem;
    align-items: stretch;
}
.goal-trade-one {
    border: 1px solid rgba(16, 185, 129, 0.36);
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.09);
    padding: 1rem;
    text-align: right;
}
.goal-trade-size {
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.55rem);
    font-weight: 800;
}
.goal-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.goal-navigator {
    border: 1px solid rgba(56, 189, 248, 0.34);
    border-radius: 8px;
    background: rgba(8, 47, 73, 0.24);
    padding: 1rem;
}
.goal-nav-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.goal-nav-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.goal-nav-sequence {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.62);
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.8rem;
}
.goal-nav-sequence span,
.goal-current-state span,
.goal-next-size-card span,
.goal-outcome-actions span,
.goal-nav-stop span,
.goal-nav-final span {
    display: block;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.goal-nav-sequence strong {
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
}
.goal-history-strip {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.42);
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.8rem;
}
.goal-history-strip span {
    display: block;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.45rem;
}
.goal-history-strip > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.goal-history-strip strong {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #f8fafc;
    padding: 0.25rem 0.65rem;
    font-size: 0.8rem;
}
.goal-history-strip .goal-chip-loss {
    border-color: rgba(239, 68, 68, 0.42);
    color: #fecaca;
}
.goal-history-strip .goal-chip-gain {
    border-color: rgba(16, 185, 129, 0.42);
    color: #bbf7d0;
}
.goal-current-state,
.goal-next-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.8rem;
}
.goal-current-state > div,
.goal-next-size-card,
.goal-outcome-actions,
.goal-nav-stop {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.58);
    padding: 0.8rem;
}
.goal-current-state strong,
.goal-next-size-card strong,
.goal-nav-stop strong,
.goal-nav-final strong {
    display: block;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
}
.goal-current-state small,
.goal-next-size-card small {
    color: #94a3b8;
}
.goal-outcome-actions {
    grid-column: span 2;
}
.goal-outcome-actions > div {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 0.55rem;
}
.goal-nav-stop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-color: rgba(16, 185, 129, 0.38);
    background: rgba(16, 185, 129, 0.12);
}
.goal-nav-warning {
    border-color: rgba(245, 158, 11, 0.42);
    background: rgba(245, 158, 11, 0.12);
}
.goal-log-empty {
    padding: 0.85rem;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.45);
    border: 1px dashed rgba(148, 163, 184, 0.28);
    border-radius: 8px;
}
.scenario-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.scenario-title span {
    color: #f8fafc;
}
.scenario-title small {
    color: #94a3b8;
    font-weight: 500;
    text-align: right;
}
.goal-sequence {
    color: #e0f2fe;
    letter-spacing: 0.02em;
}
.goal-optimizer-page .math-table tbody tr {
    transform: none !important;
}
.goal-optimizer-page .math-table tbody tr > * {
    background-color: rgba(15, 23, 42, 0.54) !important;
    color: #dbeafe !important;
    border-color: rgba(148, 163, 184, 0.14) !important;
}
.goal-optimizer-page .math-table tbody tr.table-success > * {
    background-color: rgba(16, 185, 129, 0.13) !important;
}
.goal-optimizer-page .math-table tbody tr.table-danger > * {
    background-color: rgba(239, 68, 68, 0.12) !important;
}
.goal-optimizer-page .math-table tbody tr.scenario-detail-row > * {
    background-color: rgba(2, 6, 23, 0.72) !important;
}
.goal-optimizer-page .math-table tbody tr:hover > * {
    background-color: rgba(14, 165, 233, 0.20) !important;
    color: #f8fafc !important;
    box-shadow: inset 0 1px rgba(125, 211, 252, 0.20), inset 0 -1px rgba(125, 211, 252, 0.14);
}
.goal-optimizer-page .math-table tbody tr:hover .text-muted {
    color: #bfdbfe !important;
}
.goal-optimizer-page .math-table tbody tr:hover .text-success {
    color: #86efac !important;
}
.goal-optimizer-page .math-table tbody tr:hover .text-danger {
    color: #fca5a5 !important;
}
.goal-optimizer-page .scenario-click:hover > * {
    background-color: rgba(56, 189, 248, 0.24) !important;
}
.goal-optimizer-page .goal-alternative-row {
    cursor: pointer;
}
.goal-optimizer-page .math-table tbody tr.goal-alternative-selected > * {
    background-color: rgba(56, 189, 248, 0.30) !important;
    color: #f8fafc !important;
    box-shadow: inset 3px 0 #38bdf8;
}
.goal-optimizer-page .math-table tbody tr.goal-alternative-selected:hover > * {
    background-color: rgba(56, 189, 248, 0.38) !important;
}
@media (max-width: 1200px) {
    .goal-constraint-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .goal-result-main {
        grid-template-columns: 1fr;
    }
    .goal-trade-one {
        text-align: left;
    }
    .goal-current-state,
    .goal-next-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .goal-outcome-actions {
        grid-column: span 2;
    }
}
@media (max-width: 768px) {
    .goal-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .goal-header-actions {
        justify-content: flex-start;
        width: 100%;
    }
    .goal-constraint-strip {
        grid-template-columns: 1fr;
    }
    .scenario-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }
    .scenario-title small {
        text-align: left;
    }
    .math-status {
        flex-direction: column;
    }
    .math-status .text-end {
        text-align: left !important;
    }
    .goal-nav-top,
    .goal-nav-stop {
        flex-direction: column;
    }
    .goal-nav-tools {
        justify-content: flex-start;
    }
    .goal-current-state,
    .goal-next-grid {
        grid-template-columns: 1fr;
    }
    .goal-outcome-actions {
        grid-column: span 1;
    }
}
/* ALIGNED SIMULATOR GRIDS */
.aligned-grid-table {
    table-layout: fixed;
    border-collapse: collapse;
}
.aligned-grid-table thead tr,
.aligned-grid-table thead th {
    height: 28px !important;
}
.aligned-grid-table thead th {
    padding: 4px 6px !important;
    line-height: 20px !important;
    vertical-align: middle !important;
}
.aligned-grid-table tbody tr {
    height: 36px !important;
    max-height: 36px !important;
    transform: none !important;
}
.aligned-grid-table tbody tr:hover {
    transform: none !important;
}
.aligned-grid-table tbody td {
    height: 36px !important;
    max-height: 36px !important;
    padding: 3px 6px !important;
    line-height: 30px !important;
    vertical-align: middle !important;
    overflow: hidden;
}
.aligned-grid-table .grid-row-control,
.aligned-grid-table .grid-readonly-control,
.aligned-grid-table .form-select,
.aligned-grid-table .form-control {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    line-height: 22px !important;
}
.aligned-grid-table .grid-readonly-control {
    display: flex;
    align-items: center;
    width: 100%;
    color: #e2e8f0;
}
.aligned-grid-table .badge {
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.delta-table .badge {
    width: 24px;
    min-width: 24px;
    padding-left: 0;
    padding-right: 0;
}.delta-row-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 22px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    border-radius: 4px;
    color: #94a3b8;
    background: rgba(15, 23, 42, 0.35);
    font-size: 0.78rem;
    line-height: 1;
}
