/* ==========================================================================
   Integral Command Centre - Global Styles
   ==========================================================================
   Palette and typeface come from integralfp.co.uk (theme: ifp-main-theme),
   as used in the client-facing wireframes:
     #662D91  brand purple   logo, primary buttons, links
     #3D1B57  purple deep    app chrome (sidebar, top bar)
     #55276F  purple mid     stat tiles
     #EA3E60  accent pink    alerts, attention
     #769B60  brand green    healthy, confirmed
     #09030E  brand black    headings, body copy
   Typeface: Open Sans, as their site.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand */
    --brand: #662D91;
    --brand-deep: #3D1B57;
    --brand-mid: #55276F;
    --brand-active: #5A2680;
    --brand-hover: #58267D;
    --brand-tint: #F1E7F8;
    --pink: #EA3E60;
    --pink-tint: #FDECEF;
    --pink-ink: #B32744;
    --green: #769B60;
    --green-tint: #EDF3E8;
    --green-ink: #4F6B3E;
    --amber: #C98A12;
    --amber-tint: #FDF1D8;
    --amber-ink: #8F620F;
    --amber-bright: #FFC65C;

    /* Neutrals (warm purple tint so nothing reads as blue) */
    --black: #09030E;
    --text: #3A3340;
    --muted: #7C7285;
    --page-bg: #F4F1F7;
    --surface: #FFFFFF;
    --card-border: #E4DCEB;
    --divider: #EFE9F4;
    --row-line: #F5F1F8;
    --input-border: #D8D2DE;

    /* Sidebar text shades */
    --chrome-text: #DBCEE5;
    --chrome-text-soft: #C3A8D6;
    --chrome-text-faint: #A98BC0;
    --chrome-hover: #472064;
    --chrome-line: #6D3A8C;

    /* Typography */
    --font-family: 'Open Sans', 'Segoe UI', 'Noto Sans', Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Shape */
    --radius: 6px;
    --radius-sm: 3px;
    --shadow-card: 0 1px 2px rgba(61, 27, 87, 0.06);
    --shadow-btn: 0 1px 3px rgba(61, 27, 87, 0.28);

    /* Layout */
    --sidebar-width: 248px;
    --topbar-height: 66px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    background: var(--page-bg);
    min-height: 100vh;
}

h1, h2, h3 {
    margin: 0;
    color: var(--black);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 24px; }

/* FocusOnNavigate (Routes.razor) moves focus to the page heading after every
   navigation so screen readers announce the new page. The heading is not
   interactive, so the browser's focus ring around it only looks like a stray
   selection - hide it. */
h1:focus {
    outline: none;
}
h2 { font-size: 17px; }

p {
    margin: 0 0 var(--spacing-sm);
}

a {
    color: var(--brand);
}

code {
    font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
    font-size: 13px;
    background: #F1F0F4;
    padding: 2px 5px;
    border-radius: var(--radius-sm);
}

.muted {
    color: var(--muted);
}

.strong {
    font-weight: 700;
    color: var(--black);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    background: var(--brand);
    color: #FFFFFF;
    font: inherit;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: background-color 0.15s;
}

.btn:hover {
    background: var(--brand-hover);
    color: #FFFFFF;
    text-decoration: none;
}

.btn:disabled {
    background: #EDE9F1;
    border-color: #E0DAE6;
    color: #A79FAF;
    box-shadow: none;
    cursor: not-allowed;
}

.btn-ghost {
    background: var(--surface);
    color: var(--brand);
    border-color: #D3BCE3;
    box-shadow: none;
}

.btn-ghost:hover {
    background: #F9F4FC;
    color: var(--brand);
}

.btn-sm {
    font-size: 13px;
    padding: 6px 13px;
}

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

.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* --------------------------------------------------------------------------
   Chips and pills
   -------------------------------------------------------------------------- */
.chip {
    display: inline-block;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.chip-purple { background: var(--brand-tint); color: var(--brand); }
.chip-green  { background: var(--green-tint); color: var(--green-ink); }
.chip-amber  { background: var(--amber-tint); color: var(--amber-ink); }
.chip-pink   { background: var(--pink-tint); color: var(--pink-ink); }

.pill {
    display: inline-block;
    padding: 3px 9px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pill-ok   { background: var(--green-tint); color: var(--green-ink); }
.pill-due  { background: var(--amber-tint); color: var(--amber-ink); }
.pill-stop { background: var(--pink-tint); color: var(--pink-ink); }
.pill-grey { background: #EFEDF2; color: var(--muted); }

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green);
}

.dot-green  { background: var(--green); }
.dot-purple { background: var(--brand); }
.dot-amber  { background: var(--amber); }
.dot-pink   { background: var(--pink); }

/* --------------------------------------------------------------------------
   App shell: sidebar + main column
   -------------------------------------------------------------------------- */
.app {
    display: flex;
    min-height: 100vh;
}

.app-sidebar {
    position: sticky;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: var(--brand-deep);
    color: var(--chrome-text);
    overflow-y: auto;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 16px 24px 12px;
    min-height: var(--topbar-height);
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 160px;
    height: auto;
    display: block;
}

.brand-caption {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--chrome-text-soft);
}

.sidebar-nav {
    flex: 1;
    padding: var(--spacing-sm) 0;
}

.nav-section {
    margin-top: 14px;
}

.nav-section-title {
    padding: 8px 24px 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--chrome-text-faint);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 24px;
    border-left: 3px solid transparent;
    color: var(--chrome-text);
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
}

.nav-item:hover {
    background: var(--chrome-hover);
    color: #FFFFFF;
}

.nav-item.active {
    background: var(--brand-active);
    border-left-color: var(--pink);
    color: #FFFFFF;
    font-weight: 600;
}

.nav-icon {
    width: 20px;
    text-align: center;
    font-size: 17px;
}

/* Duotone layers in the sidebar: white glyph, softer purple-tinted secondary. */
.nav-item .nav-icon i {
    --fa-primary-color: #FFFFFF;
    --fa-secondary-color: var(--chrome-text-soft);
    --fa-secondary-opacity: 0.7;
}

.nav-item.active .nav-icon i {
    --fa-secondary-color: var(--pink);
    --fa-secondary-opacity: 0.9;
}

.sidebar-footer {
    padding: 18px 24px 16px;
}

.sidebar-legal-links {
    margin-bottom: 14px;
    font-size: 12px;
}

.sidebar-legal-links a {
    color: var(--chrome-text-faint);
    text-decoration: none;
}

.sidebar-legal-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.sidebar-legal-sep {
    margin: 0 8px;
    color: var(--chrome-line);
}

.powered-by {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.powered-by-label {
    font-size: 8.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--chrome-text-faint);
}

.powered-by img {
    width: 118px;
    display: block;
}

/* Main column */
.app-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.app-topbar {
    height: var(--topbar-height);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 0 28px;
    background: var(--brand-deep);
    color: #FFFFFF;
}

.topbar-bell {
    position: relative;
    display: inline-flex;
    color: #FFFFFF;
    font-size: 20px;
    text-decoration: none;
}

.topbar-bell i {
    --fa-primary-color: #FFFFFF;
    --fa-secondary-color: var(--chrome-text-soft);
}

.topbar-badge {
    position: absolute;
    top: -7px;
    right: -9px;
    padding: 1px 5px;
    border-radius: 9px;
    background: var(--pink);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.topbar-welcome {
    font-size: 16.5px;
}

.user-menu {
    position: relative;
}

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--brand);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.user-avatar:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* Invisible full-screen layer under the dropdown: a click anywhere outside the
   menu lands here and closes it. Sits below the dropdown (z-index 100). */
.user-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99;
}

.user-menu-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(9, 3, 14, 0.18);
    z-index: 100;
    overflow: hidden;
}

.user-menu-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--divider);
    color: var(--text);
    font-size: 13.5px;
}

.user-menu-heading strong {
    color: var(--black);
}

.user-menu-heading span {
    color: var(--muted);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
}

.user-menu-item:hover {
    background: var(--brand-tint);
    color: var(--brand);
}

.user-menu-item i {
    --fa-primary-color: var(--brand);
    --fa-secondary-color: var(--muted);
    --fa-secondary-opacity: 0.6;
}

.app-content {
    flex: 1;
    min-width: 0;
    padding: 24px 28px 40px;
}

/* --------------------------------------------------------------------------
   Page furniture
   -------------------------------------------------------------------------- */
.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.page-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 14px;
    color: var(--muted);
}

/* Stat tiles */
.stat-tiles {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.stat-tile {
    flex: 1 1 220px;
    padding: 24px 22px 20px;
    border: 1px solid var(--chrome-line);
    border-radius: var(--radius);
    background: var(--brand-mid);
    color: #FFFFFF;
    text-align: center;
}

.stat-tile-value {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.stat-tile-label {
    margin-top: 6px;
    font-size: 13.5px;
    color: #D2BFDE;
}

.stat-tile-warn .stat-tile-value {
    color: var(--amber-bright);
}

/* Cards */
.card {
    margin-bottom: 18px;
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 16px 22px 14px;
    border-bottom: 1px solid var(--divider);
}

.card-header h2 {
    flex: 1;
    min-width: 160px;
}

.card-meta {
    font-size: 12.5px;
    color: var(--muted);
}

.card-body {
    padding: 18px 20px;
}

/* Dashboard two-column grid */
.dashboard-grid {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.dashboard-main {
    flex: 1 1 560px;
    min-width: 0;
}

.dashboard-side {
    flex: 1 1 320px;
    max-width: 420px;
    min-width: 0;
}

/* Tables */
.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    padding: 11px 18px 9px;
    border-bottom: 1px solid var(--divider);
    background: #FCFBFD;
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    white-space: nowrap;
}

.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--row-line);
    font-size: 14px;
    vertical-align: top;
}

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

.data-table tbody tr:hover td {
    background: #FCFAFD;
}

.data-table .num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Bar chart (CSS only) */
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 26px;
    height: 160px;
    padding: 0 6px;
    border-bottom: 1px solid var(--divider);
}

.bar-column {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.bar {
    width: 100%;
    border-radius: 3px 3px 0 0;
    background: var(--green);
    min-height: 2px;
}

.bar-labels {
    display: flex;
    gap: 26px;
    padding: 6px 6px 0;
    font-size: 11.5px;
}

.bar-labels div {
    flex: 1;
    text-align: center;
    font-size: 10.5px;
    color: var(--muted);
}

/* Upload drop zones */
.drop-zones {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.drop-zone {
    flex: 1 1 100px;
    padding: 13px 8px 11px;
    border: 1.5px dashed #C6B7D3;
    border-radius: var(--radius);
    background: #FCFBFD;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s;
}

.drop-zone:hover {
    border-color: var(--brand);
}

.drop-zone-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.drop-zone-hint {
    margin-top: 3px;
    font-size: 11.5px;
    line-height: 1.35;
    color: var(--muted);
}

.drop-zone-due {
    border-color: #D9A94C;
    background: #FFFAF0;
}

.drop-zone-due .drop-zone-hint {
    color: var(--amber-ink);
}

/* Decisions list */
.decision-list {
    padding: 6px 0 4px;
}

.decision-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--row-line);
}

.decision-row:last-child {
    border-bottom: none;
}

.decision-text {
    flex: 1;
    font-size: 13.5px;
    line-height: 1.35;
}

.decision-text strong {
    color: var(--black);
}

/* Coming soon */
.coming-soon {
    padding: 48px 32px;
    text-align: center;
}

.coming-soon-icon {
    margin-bottom: 14px;
    font-size: 44px;
    color: var(--brand);
}

.coming-soon-icon i {
    --fa-primary-color: var(--brand);
    --fa-secondary-color: var(--brand);
    --fa-secondary-opacity: 0.35;
}

.coming-soon h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.coming-soon p {
    max-width: 520px;
    margin: 0 auto 10px;
}

.coming-soon .btn {
    margin-top: 12px;
}

/* Loading */
.loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

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

/* --------------------------------------------------------------------------
   Splash shell: sign-in, legal and error pages
   -------------------------------------------------------------------------- */
.splash {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background: var(--brand-deep);
    color: var(--chrome-text);
}

.splash-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
}

.splash-brand .brand-logo {
    width: 200px;
}

.splash-body {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 8vh;
}

.login-card {
    width: 100%;
    max-width: 396px;
    padding: 30px 30px 26px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(9, 3, 14, 0.28);
    color: var(--text);
}

.login-card h1 {
    font-size: 18px;
    margin-bottom: 4px;
}

.login-intro {
    margin-bottom: 22px;
    font-size: 13px;
    color: var(--muted);
}

.login-note {
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--divider);
    font-size: 12.5px;
    color: var(--muted);
}

.splash-message {
    max-width: 480px;
    padding: 30px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(9, 3, 14, 0.28);
    color: var(--text);
    text-align: center;
}

.splash-message h1 {
    margin-bottom: 8px;
}

.splash-message .btn {
    margin-top: 12px;
}

.legal-card {
    width: 100%;
    max-width: 720px;
    padding: 30px 34px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(9, 3, 14, 0.28);
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
}

.legal-card h1 {
    margin-bottom: 6px;
}

.legal-card .btn {
    margin-top: 12px;
}

.legal-meta {
    margin-bottom: 18px;
    font-size: 12.5px;
    color: var(--muted);
}

.splash-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    text-align: center;
    font-size: 11.5px;
    color: var(--chrome-text-faint);
}

.splash-footer-links a {
    color: var(--chrome-text-soft);
    text-decoration: none;
}

.splash-footer-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.splash-footer-sep {
    margin: 0 8px;
}

.splash-footer-note {
    margin: 0;
}

.splash-footer .powered-by {
    align-items: center;
}

.splash-footer .powered-by img {
    width: 104px;
}

/* --------------------------------------------------------------------------
   Blazor framework UI: error bar and reconnect modal
   -------------------------------------------------------------------------- */
#blazor-error-ui {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 0.6rem 1.25rem 0.7rem;
    background: var(--amber-tint);
    color: var(--amber-ink);
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

#blazor-error-ui .dismiss {
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    cursor: pointer;
}

#components-reconnect-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    background: rgba(9, 3, 14, 0.65);
    font-family: var(--font-family);
}

#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-retrying,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected {
    display: flex;
}

.reconnect-modal-card {
    width: 100%;
    max-width: 480px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.reconnect-modal-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--brand-deep);
    color: #FFFFFF;
}

.reconnect-modal-header i {
    font-size: 20px;
    --fa-primary-color: var(--pink);
    --fa-secondary-color: #FFFFFF;
    --fa-secondary-opacity: 0.85;
}

.reconnect-modal-title {
    margin: 0;
    font-size: 17px;
    color: #FFFFFF;
}

.reconnect-modal-body {
    padding: var(--spacing-lg);
    color: var(--text);
}

.reconnect-modal-body p:last-child {
    margin-bottom: 0;
}

.reconnect-modal-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: var(--spacing-sm);
    border: 2px solid var(--card-border);
    border-top-color: var(--brand);
    border-radius: 50%;
    vertical-align: -3px;
    animation: spin 0.8s linear infinite;
}

.reconnect-modal-footer {
    display: none;
    justify-content: flex-end;
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.reconnect-modal-message {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .reconnect-modal-message[data-state="show"],
#components-reconnect-modal.components-reconnect-retrying .reconnect-modal-message[data-state="show"],
#components-reconnect-modal.components-reconnect-failed .reconnect-modal-message[data-state="failed"],
#components-reconnect-modal.components-reconnect-rejected .reconnect-modal-message[data-state="rejected"] {
    display: block;
}

#components-reconnect-modal.components-reconnect-failed .reconnect-modal-footer-failed,
#components-reconnect-modal.components-reconnect-rejected .reconnect-modal-footer-rejected {
    display: flex;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .app-sidebar {
        display: none;
    }

    .app-content {
        padding: 20px 18px 36px;
    }

    .app-topbar {
        padding: 0 18px;
    }

    .dashboard-side {
        max-width: none;
    }
}
