/* =========================================================
   1) TOKENS
   ========================================================= */
:root {
    --brand-blue: #122c7b;
    --brand-orange: #fc830b;
    --brand-soft: #eef2ff;

    --text: #0b1220;
    --muted: rgba(11, 18, 32, .62);

    --bg: #f5f5f7;
    --surface: #ffffff;

    --border: rgba(19, 44, 120, .12);
    --border-2: rgba(19, 44, 120, .18);

    --shadow-sm: 0 10px 30px rgba(19, 44, 120, .08);
    --shadow: 0 24px 70px rgba(19, 44, 120, .12);

    --focus: rgba(242, 140, 27, .18);

    --radius: 16px;
    --radius-lg: 26px;

    --pad: 16px;

    --font-body: "Heebo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-title: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    --t-fast: .12s ease;
    --t: .18s ease;
}

/* =========================================================
   2) BASE
   ========================================================= */
* {
    box-sizing: border-box;
}

html {
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    ;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

::selection {
    background: rgba(242, 140, 27, .18);
}

/* =========================================================
   3) COMPONENTES BASE
   ========================================================= */
.btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform var(--t-fast),
        box-shadow var(--t-fast),
        background var(--t-fast),
        border-color var(--t-fast),
        color var(--t-fast);
}

.btn:active {
    transform: translateY(1px);
}

.btn:focus {
    outline: none;
}

.btn-primary {
    background: var(--brand-blue);
    color: #fff;
}

.btn-primary:hover {
    background: rgba(242, 140, 27, .12);
    color: var(--brand-orange);
}

.alert {
    border-radius: 14px;
    border: 1px solid rgba(242, 140, 27, .20);
    padding: 13px 14px;
    margin-bottom: 22px;
    font-size: 14px;
    color: rgba(11, 18, 32, .92);
    background: rgba(242, 140, 27, .10);
    text-align: left;
}

.warn {
    background: rgba(255, 193, 7, .12);
    border: 1px solid rgba(255, 193, 7, .25);
    color: rgba(0, 0, 0, .75);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
}

.alerta-error {
    max-width: 1400px;
    margin: 20px auto 0 auto;
    padding: 16px 18px;
    border-radius: 14px;
    background: #fff3cd;
    border: 1px solid #ffe69c;
    color: #664d03;
}

.highlight {
    color: var(--brand-orange);
    font-weight: 700;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* =========================================================
   4) LOGIN SPLIT
   ========================================================= */
.login-split-wrap {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.login-split-card {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.login-visual {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(19, 44, 120, .25), rgba(19, 44, 120, .55)),
        linear-gradient(135deg, var(--brand-blue), #1d47b5);
}

.login-visual-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgb(19 44 120 / 0%), rgb(11 18 32 / 47%)),
        linear-gradient(160deg, rgb(242 140 27 / 55%), #00000000 45%);
    z-index: 1;
}

.login-visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-visual-brand img {
    width: 300px;
}

.login-visual-copy {
    color: #fff;
    max-width: 340px;
}

.login-visual-copy h2 {
    margin: 0 0 12px;
    font-family: var(--font-title);
    font-size: 34px;
    line-height: 1.05;
    font-weight: 700;
}

.login-visual-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .86);
}

.login-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    padding: 40px;
}

.login-form-inner {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}

.login-form-head {
    margin-bottom: 28px;
}

.login-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(242, 140, 27, .10);
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 16px;
}

.auth-title {
    margin: 0 0 8px;
    font-family: var(--font-title);
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--brand-blue);
}

.auth-sub {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
}

/* =========================================================
   5) FORMULARIOS
   ========================================================= */
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.label {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-blue);
    margin: 0 0 8px;
    font-family: var(--font-title);
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.field {
    width: 100%;
    height: 45px;
    border-radius: 14px;
    padding: 0 14px 0 42px;
    font-size: 14px;
    color: var(--text);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    background: #f8faff;
    border: 1px solid #e7ebf4;
}

.field::placeholder {
    color: rgba(11, 18, 32, .34);
}

.field:focus {
    outline: none;
    border: 1px solid rgba(242, 140, 27, .45);
}

.field.is-password {
    padding: 0 56px 0 42px;
}

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--brand-blue);
    transition: background var(--t-fast), color var(--t-fast);
}

.pw-toggle:hover {
    color: var(--brand-orange);
}

.pw-toggle:focus {
    outline: none;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.login-submit-btn {
    width: 100%;
    border-radius: 999px;
    font-size: 14px;
    height: 45px;
}

/* =========================================================
   6) DASHBOARD / TOPBAR
   ========================================================= */
.dash-container,
.dash-topbar-inner,
.dash-hero,
.calc-wrap,
.row,
.card,
.dash-card,
.kpi-grid,
.kpi-row-top,
.kpi-row-bottom,
.grid2,
.grid3,
.inline-switch-row,
.period-sync-row {
    min-width: 0;
}

.dash-container {
    margin: 0 auto;
    padding: 20px;
    background: var(--bg);
    min-height: calc(100vh - 91px);
}

.dash-topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(19, 44, 120, .08);
}

.dash-topbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.dash-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.dash-brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.dash-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: auto;
    padding-left: 10px;
    min-width: 0;
}

.dash-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-blue);
    padding: 10px 20px;
    border-radius: 12px;
    transition: color var(--t-fast), background var(--t-fast), opacity var(--t-fast);
}

.dash-nav-item i {
    font-size: 18px;
}

.dash-nav-item:hover,
.dash-nav-item.is-active {
    color: var(--brand-orange);
    background: rgba(242, 140, 27, .08);
}

.dash-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #132c78;
    background: rgba(19, 44, 120, .08);
    transition: background var(--t-fast), transform var(--t-fast);
    flex-shrink: 0;
}

.dash-icon-btn:hover {
    background: rgba(242, 140, 27, .12);
    color: var(--brand-orange);
}

.dash-icon-btn:active {
    transform: translateY(1px);
}

.dash-hero {
    padding: 20px 0;
}

.dash-title {
    margin: 0 0 5px;
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.08;
}

.dash-sub {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* =========================================================
   7) HOME / INDEX
   ========================================================= */
.dash-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px);
    gap: 20px;
    align-items: start;
}

.dash-card {
    background: var(--surface);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(19, 44, 120, .08);
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.dash-card:hover {
    box-shadow: 0 16px 34px rgba(19, 44, 120, .10);
    border-color: rgba(242, 140, 27, .22);
}

.dash-card-primary {
    position: relative;
    overflow: hidden;
}

.dash-card-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(242, 140, 27, .10), transparent 35%),
        radial-gradient(circle at bottom left, rgba(19, 44, 120, .08), transparent 40%);
    pointer-events: none;
}

.dash-card-primary>* {
    position: relative;
    z-index: 1;
}

.dash-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    min-width: 0;
}

.dash-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 44, 120, .08);
    color: var(--brand-blue);
    flex-shrink: 0;
}

.dash-card-icon i {
    font-size: 20px;
}

.dash-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-blue);
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(19, 44, 120, .06);
    transition: background var(--t-fast), color var(--t-fast);
}

.dash-card:hover .dash-card-cta {
    background: rgba(242, 140, 27, .12);
    color: var(--brand-orange);
}

.dash-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.dash-card-title {
    margin: 0;
    font-family: var(--font-title);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--brand-blue);
}

.dash-card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

/* =========================================================
   8) TARIFICADOR
   ========================================================= */
.calc-wrap {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

.calc-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
}

.calc-head-copy {
    min-width: 0;
}

.regulated-update-box {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    min-width: 0;
    max-width: 100%;
}

.regulated-update-inline {
    display: flex;
    align-items: baseline;
    flex-direction: row-reverse;
    gap: 5px;
    color: #132c78;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
}

.regulated-update-inline .regulated-update-date {
    white-space: nowrap;
}

.regulated-update-inline .regulated-update-notes {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.row {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 20px;
    align-items: start;
    min-width: 0;
}

.card {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.card h2 {
    margin: 0 0 20px 0;
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-blue);
}

label {
    display: block;
    margin: 15px 0 10px 0;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    font-family: var(--font-title);
}

input[type="number"],
input[type="text"] {
    width: 100%;
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
    background: #f8faff;
    font-size: 14px;
    min-width: 0;
    border: 1px solid #e7ebf4;
}

select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    padding: 10px 12px;
    outline: none;
    background: #ffffff;
    font-size: 14px;
    min-width: 0;
}

input[readonly] {
    background: rgb(254 246 237);
    border: 1px solid #fc830b38;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-width: 0;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-width: 0;
}

.btnrow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
    min-width: 0;
}

.btnrow button {
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    border: none;
    background: var(--brand-blue);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
    font-size: 15px;
}

.btnrow button:hover {
    background: rgba(242, 140, 27, .12);
    color: var(--brand-orange);
}

.kpi {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.pill {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    background: #ebedf3;
    border-radius: 14px;
    flex-direction: column;
}

.pill span {
    font-size: 12px;
    color: #000;
    font-weight: 700;
}

.pill strong {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-title);
}

.pill strong.highlight {
    color: var(--brand-orange);
}

.kpi-grid {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.kpi-row-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
}

.kpi-row-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
}

.kpi-card {
    border-radius: 15px;
    padding: 14px 16px;
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    background: #f8faff;
    border: 1px solid #e7ebf4;
}

.kpi-card span {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.kpi-card strong {
    font-size: 20px;
    font-weight: 700;
    color: #082b7a;
    line-height: 1.1;
}

.kpi-card strong.highlight {
    color: #ff7a00;
}

.tableWrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
}

.tableWrap.is-empty {
    border: none;
    overflow: visible;
    background: transparent;
}

table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th,
td {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    font-size: 13px;
    text-align: left;
    white-space: nowrap;
}

th {
    font-weight: 700;
    font-family: var(--font-title);
    background: #f8faff;
    color: #132C78;
}

td.highlight {
    color: var(--brand-orange);
    font-weight: 700;
}

/* =========================================================
   9) ACORDEONES TARIFICADOR
   ========================================================= */
.accordion-item {
    border-top: 1px solid rgba(19, 44, 120, .08);
    padding-top: 18px;
    margin-top: 18px;
    min-width: 0;
}

.accordion-item:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.accordion-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--brand-blue);
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    min-width: 0;
}

.accordion-toggle i {
    font-size: 14px;
    transition: transform .18s ease;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.accordion-item.is-open .accordion-toggle i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding-top: 18px;
    min-width: 0;
}

.accordion-item.is-open .accordion-content {
    display: block;
}

/* =========================================================
   10) TARIFICADOR DETALLES
   ========================================================= */
.inline-switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(20, 30, 50, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    min-width: 0;
}

.inline-switch-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.inline-switch-copy strong {
    font-size: 14px;
    line-height: 1.2;
}

.inline-switch-copy span {
    font-size: 13px;
    color: #667085;
    line-height: 1.35;
}

.switch {
    position: relative;
    display: inline-flex;
    width: 52px;
    height: 30px;
    flex: 0 0 auto;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.switch-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #ebedf3;
    border-radius: 999px;
    transition: 0.2s ease;
}

.switch-slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: 0.2s ease;
}

.switch input:checked+.switch-slider {
    background: #fc830b;
}

.switch input:checked+.switch-slider::before {
    transform: translateX(22px);
}

.field-locked {
    background: #fdf5ec !important;
    color: #0000005c;
    cursor: not-allowed;
    border: 1px solid #fc830b38 !important;
}

.empty-state-box {
    padding: 18px 16px;
    border: 1px dashed #fc830b38;
    border-radius: 14px;
    background: rgb(253 245 236);
    color: #fc830b;
    font-size: 14px;
    line-height: 1.45;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.kpi.kpi-empty {
    display: grid;
    grid-template-columns: 1fr !important;
}

.kpi.kpi-empty .empty-state-box {
    width: 100%;
    max-width: none;
}

.period-sync-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(20, 30, 50, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    min-width: 0;
}

.period-sync-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.period-sync-copy strong {
    font-size: 13px;
    line-height: 1.2;
}

.period-sync-copy span {
    font-size: 13px;
    color: #667085;
    line-height: 1.35;
}

.fecha-actualizacion {
    color: #132c78;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================================
   11) RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .login-split-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .login-visual {
        min-height: 300px;
    }

    .login-form-panel {
        padding: 30px;
    }

    .login-visual-copy h2 {
        font-size: 28px;
    }
}

@media (max-width: 900px) {

    .dash-brand img {
        height: 60px;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .kpi {
        grid-template-columns: 1fr 1fr;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }

    .kpi-row-top,
    .kpi-row-bottom {
        grid-template-columns: 1fr;
    }

    .inline-switch-row,
    .period-sync-row {
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .dash-topbar-inner {
        gap: 12px;
    }

    .dash-nav {
        width: 100%;
        padding-left: 0;
        gap: 10px;
        margin-right: 0;
        flex-wrap: wrap;
    }

    .dash-nav-item {
        padding: 9px 10px;
    }

    .calc-head {
        align-items: flex-start;
    }

    .regulated-update-box {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .regulated-update-inline {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2px;
        font-size: 14px;
    }

    .regulated-update-inline .regulated-update-date {
        font-size: 15px;
    }

    .regulated-update-inline .regulated-update-notes {
        font-size: 13px;
    }

    th,
    td {
        padding: 9px 10px;
        font-size: 12px;
    }

    .tableWrap table {
        min-width: 680px;
    }
}

@media (max-width: 520px) {

    .grid2,
    .grid3,
    .kpi {
        grid-template-columns: 1fr;
    }

    .login-form-inner {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .auth-title {
        font-size: 26px;
    }

    .dash-title {
        font-size: 26px;
    }

    .dash-card {
        padding: 22px;
    }

    .dash-card-title {
        font-size: 22px;
    }

    .card {
        padding: 20px;
    }

    .inline-switch-row,
    .period-sync-row {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .switch {
        align-self: flex-end;
    }

    .tableWrap table {
        min-width: 620px;
    }
}