/* ==========================================================================
   Oase van Luik — Design System
   Palette: #050C0D / #59111E / #736B65 / #BFBDB4 / #F2F2F2 / #526C3C
   Feel: Hausflur — structured, dense, grounded. Not SaaS.
   ========================================================================== */

:root {
    --base-dark:       #050C0D;
    --accent-red:      #59111E;
    --accent-red-hover:#7a1a2b;
    --surface-mid:     #736B65;
    --surface-light:   #BFBDB4;
    --bg-light:        #F2F2F2;
    --bg-warm:         #EDEAE6;
    --positive:        #526C3C;
    --positive-light:  #e2ead9;

    --text-primary:    #050C0D;
    --text-secondary:  #736B65;
    --text-inverse:    #F2F2F2;
    --text-muted:      #9a9590;

    --border:          #c8c4be;
    --border-strong:   #a8a49d;
    --border-light:    #dddad5;

    --radius:          3px;

    --sp-2:  2px;
    --sp-4:  4px;
    --sp-6:  6px;
    --sp-8:  8px;
    --sp-12: 12px;
    --sp-16: 16px;
    --sp-20: 20px;
    --sp-24: 24px;
    --sp-32: 32px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}


/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--text-primary);
    background: var(--bg-warm);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
    margin: 0 0 var(--sp-12) 0;
    font-weight: 600;
    line-height: 1.2;
}
h2 { font-size: 1.15rem; letter-spacing: -0.01em; }
h3 { font-size: 0.9375rem; color: var(--text-secondary); }

p { margin: 0 0 var(--sp-12) 0; }
small { font-size: 0.8125rem; color: var(--text-secondary); }
hr { border: none; border-top: 1px solid var(--border-light); margin: var(--sp-16) 0; }
code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: var(--border-light);
    padding: 1px 5px;
    border-radius: var(--radius);
}


/* --- Site Header: heavy, grounded --- */
.site-header {
    background: var(--base-dark);
    border-bottom: 3px solid var(--accent-red);
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--sp-8) var(--sp-16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-16);
}

.site-brand {
    color: var(--text-inverse);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; color: var(--surface-light); }

/* Desktop nav: inline row */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.site-nav a {
    color: var(--surface-light);
    font-size: 0.75rem;
    font-weight: 500;
    padding: var(--sp-4) var(--sp-8);
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.1s;
    white-space: nowrap;
}

.site-nav a:last-child { border-right: none; }
.site-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; text-decoration: none; }

.site-nav .nav-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.12);
}

.site-nav .nav-lang {
    color: var(--text-muted);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-inverse);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile header ── */
@media (max-width: 768px) {
    .site-header-inner {
        padding: var(--sp-6) var(--sp-12);
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--base-dark);
        border-bottom: 3px solid var(--accent-red);
        flex-direction: column;
        align-items: stretch;
        padding: var(--sp-4) 0;
        z-index: 210;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: var(--sp-8) var(--sp-16);
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 0.8125rem;
    }
    .site-nav a:last-child { border-bottom: none; }

    .site-nav .nav-divider { display: none; }
}


/* --- Main --- */
.site-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--sp-20) var(--sp-16) var(--sp-32);
}


/* --- Page Header --- */
.page-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--sp-12);
    margin-bottom: var(--sp-16);
    flex-wrap: wrap;
}
.page-header h2 { margin-bottom: 0; }
.page-header .actions { display: flex; gap: var(--sp-6); }


/* --- Panels (cards) --- */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--sp-16);
    margin-bottom: var(--sp-12);
}

.card-header {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--border-light);
}

.card-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: var(--sp-2);
}

.card-narrow {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}


/* --- Grids --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-12); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-12); }
.grid-sidebar { display: grid; grid-template-columns: 5fr 3fr; gap: var(--sp-16); }

@media (max-width: 768px) {
    .grid-3, .grid-2, .grid-sidebar { grid-template-columns: 1fr; }
}


/* --- Entry List (structured list, replaces tables) --- */
.entry-list {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.entry {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-12);
    padding: var(--sp-12) var(--sp-16);
    border-bottom: 1px solid var(--border-light);
}

.entry:last-child { border-bottom: none; }
.entry:hover { background: rgba(0,0,0,0.012); }

.entry--assigned { border-left: 3px solid var(--accent-red); }
.entry--floating { border-left: 3px solid var(--surface-mid); }

.entry-main { flex: 1; min-width: 0; }

.entry-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--sp-2);
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    flex-wrap: wrap;
}

.entry-meta {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.entry-meta + .entry-meta { margin-top: var(--sp-2); }

.entry-actions {
    display: flex;
    gap: var(--sp-4);
    flex-shrink: 0;
    align-items: flex-start;
}

.entry-date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.entry-who {
    font-weight: 600;
}

.key-name {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    background: var(--base-dark);
    color: var(--text-inverse);
    padding: 1px 6px;
    border-radius: 2px;
    letter-spacing: 0.04em;
}


.key-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-6) var(--sp-12);
}
.key-checkboxes .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-4);
    font-size: 0.8125rem;
    cursor: pointer;
}
.key-checkboxes .checkbox-label.key-conflict {
    opacity: 0.45;
    cursor: not-allowed;
}
.key-hint {
    font-size: 0.6875rem;
    color: var(--text-muted);
}
.key-hint--taken {
    color: var(--accent-red);
}

/* --- Tables (kept for admin/finance where structured lists are overkill) --- */
table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }

thead th {
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    padding: var(--sp-6) var(--sp-12);
    border-bottom: 2px solid var(--border);
    background: rgba(0,0,0,0.015);
}

tbody td {
    padding: var(--sp-6) var(--sp-12);
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(0,0,0,0.012); }

td small { display: block; margin-top: 1px; }

.table-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--sp-12);
}


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    padding: var(--sp-6) var(--sp-12);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.1s;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--accent-red); color: #fff; }
.btn-primary:hover { background: var(--accent-red-hover); color: #fff; }

.btn-dark { background: var(--base-dark); color: var(--text-inverse); }
.btn-dark:hover { background: #1a2324; color: var(--text-inverse); }

.btn-secondary { background: var(--surface-light); color: var(--text-primary); }
.btn-secondary:hover { background: #aca9a1; color: var(--text-primary); }

.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--border-light); color: var(--text-primary); }

.btn-sm { padding: var(--sp-2) var(--sp-8); font-size: 0.6875rem; }
.btn-block { width: 100%; }

/* Submit buttons */
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    padding: var(--sp-8) var(--sp-20);
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--accent-red);
    color: #fff;
    transition: background 0.1s;
}
button[type="submit"]:hover { background: var(--accent-red-hover); }
button[type="submit"].secondary,
button[type="submit"].btn-secondary { background: var(--surface-light); color: var(--text-primary); }
button[type="submit"].btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }


/* --- Forms --- */
label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--sp-12);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="date"],
select,
textarea {
    display: block;
    width: 100%;
    padding: var(--sp-6) var(--sp-8);
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-primary);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: var(--sp-4);
    transition: border-color 0.1s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 1px rgba(89,17,30,0.15);
}

input[readonly] { background: var(--bg-warm); color: var(--text-secondary); }
textarea { resize: vertical; min-height: 52px; }

fieldset {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--sp-12);
    margin: 0 0 var(--sp-12) 0;
}

legend {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 0 var(--sp-6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

input[type="checkbox"] { accent-color: var(--accent-red); margin-right: var(--sp-4); }
small.error { color: var(--accent-red); font-weight: 500; text-transform: none; letter-spacing: normal; }


/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 2px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-resident { background: var(--base-dark); color: var(--text-inverse); }
.badge-guest { background: var(--accent-red); color: #fff; }
.badge-cancelled { background: var(--border-light); color: var(--text-muted); text-decoration: line-through; }
.badge-paid { background: var(--positive-light); color: var(--positive); }
.badge-unpaid { background: #f0e0e2; color: var(--accent-red); }


/* --- Flash messages --- */
.flash {
    padding: var(--sp-8) var(--sp-12);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--sp-12);
    border-left: 3px solid;
}

.flash-success { background: var(--positive-light); color: var(--positive); border-color: var(--positive); }
.flash-error { background: #f0e0e2; color: var(--accent-red); border-color: var(--accent-red); }
.flash-warning { background: #f5eed9; color: #7a5c12; border-color: #c9a227; }


/* --- Overlap warning --- */
.overlap-warning {
    background: #f5eed9;
    border: 1px solid #d4be6e;
    border-left: 3px solid #c9a227;
    border-radius: var(--radius);
    padding: var(--sp-8) var(--sp-12);
    margin-bottom: var(--sp-12);
    font-size: 0.8125rem;
}
.overlap-warning strong { font-size: 0.75rem; }
.overlap-warning ul { margin: var(--sp-6) 0 0 var(--sp-16); padding: 0; }
.overlap-warning small { display: block; margin-top: var(--sp-6); color: var(--text-muted); }


/* --- Shortfall --- */
.shortfall { color: var(--accent-red); font-weight: 600; }


/* --- FullCalendar — structural, dense, solid --- */

/* CSS custom props for the whole FC instance */
.fc {
    --fc-border-color:           rgba(5,12,13,0.20);
    --fc-today-bg-color:         rgba(89,17,30,0.05);
    --fc-neutral-bg-color:       #f9f8f7;
    --fc-page-bg-color:          #ffffff;
    --fc-event-border-color:     transparent;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
}

/* ── Toolbar ── */
.fc .fc-toolbar { margin-bottom: 12px; }
.fc .fc-toolbar-title {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.fc .fc-button-primary {
    background: var(--base-dark);
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 5px 11px;
    height: 30px;
    box-shadow: none;
    transition: background 0.1s;
}
.fc .fc-button-primary:hover,
.fc .fc-button-primary:focus { background: #1a2324; box-shadow: none; }
.fc .fc-button-primary:active { background: #0e1819 !important; box-shadow: none !important; }
.fc .fc-button-primary:disabled { opacity: 0.35; }
.fc .fc-button-primary.fc-button-active { background: var(--accent-red); }

/* ── Day header row (MO DI MI…) ── */
.fc .fc-col-header-cell {
    background: rgba(5,12,13,0.04);
    border-color: rgba(5,12,13,0.20) !important;
}

.fc .fc-col-header-cell-cushion {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(5,12,13,0.60);
    letter-spacing: 0.025em;
    text-transform: uppercase;
    padding: 5px 4px;
    text-decoration: none !important;
}

/* ── Grid cells ── */
.fc .fc-daygrid-day {
    min-height: 68px;
}

.fc th,
.fc td {
    border-color: rgba(5,12,13,0.18) !important;
}

.fc .fc-scrollgrid {
    border-color: rgba(5,12,13,0.22) !important;
    border-width: 1px !important;
}

.fc .fc-scrollgrid-section > td {
    border-color: rgba(5,12,13,0.22) !important;
}

/* ── Day numbers ── */
.fc .fc-daygrid-day-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(5,12,13,0.60);
    padding: 4px 5px;
    text-decoration: none !important;
    line-height: 1;
}

/* Non-current month days — fade back */
.fc .fc-day-other .fc-daygrid-day-number {
    opacity: 0.35;
}

/* Today — red number, subtle fill */
.fc .fc-day-today {
    background: rgba(89,17,30,0.045) !important;
}
.fc .fc-day-today .fc-daygrid-day-number {
    color: var(--accent-red);
    font-weight: 700;
    opacity: 1;
}

/* Hover on empty day → pointer hint */
.fc .fc-daygrid-day:not(.fc-day-other):hover {
    background: rgba(5,12,13,0.025);
    cursor: pointer;
}

/* ── Booking blocks ── */
.fc .fc-daygrid-event-harness {
    margin: 0 2px 2px;
}

.fc .fc-daygrid-event {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.25;
    padding: 3px 7px;
    border-radius: 4px;
    border: none !important;
    min-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 1px 0 rgba(0,0,0,0.18);
    cursor: pointer;
    margin: 0;
}

/* Multi-day span: no gap at edges */
.fc .fc-daygrid-block-event .fc-event-main {
    padding: 3px 7px;
}

/* Resident: dark, stable, default presence */
.fc-resident {
    background-color: #050C0D !important;
    border-color: #050C0D !important;
    color: #ffffff !important;
    border-radius: 4px !important;
}

.fc-resident .fc-event-title { color: #ffffff; }

/* Guest: red, intentional, highlighted */
.fc-guest {
    background-color: #59111E !important;
    border-color: #59111E !important;
    color: #ffffff !important;
    border-radius: 4px !important;
}

.fc-guest .fc-event-title { color: #ffffff; }

/* Dot in list views */
.fc .fc-list-event-dot { border-color: var(--base-dark); }


/* --- Sidebar list --- */
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li {
    padding: var(--sp-6) 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.8125rem;
}
.sidebar-list li:last-child { border-bottom: none; }


/* --- Utility --- */
.text-muted { color: var(--text-secondary); }
.text-mono { font-family: var(--font-mono); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--sp-8); }
.mb-md { margin-bottom: var(--sp-12); }
.mb-lg { margin-bottom: var(--sp-16); }

.stack > * + * { margin-top: var(--sp-12); }
.stack-sm > * + * { margin-top: var(--sp-8); }


/* --- Dashboard: mobile-first layout --- */

/* Calendar card: tight, the primary surface */
.dash-calendar-card {
    padding: var(--sp-8) !important;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Free weekends: inline strip, continuation of calendar */
.dash-weekends {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    background: #fff;
    border: 1px solid var(--border);
    border-top: none;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    padding: var(--sp-6) var(--sp-12);
    margin-bottom: var(--sp-8);
    flex-wrap: wrap;
    font-size: 0.75rem;
}

.dash-weekends-label {
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.625rem;
}

.dash-weekend-item {
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
}

.dash-weekend-item + .dash-weekend-item::before {
    content: "·";
    margin-right: var(--sp-8);
    color: var(--border-strong);
    font-weight: 400;
}

/* Secondary section: stats + actions + outstanding */
.dash-secondary {
    margin-bottom: var(--sp-8);
}

/* Stats: single compact inline row */
.dash-stats-compact {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: var(--sp-6) 0;
}

.dash-stat-inline strong {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.8125rem;
}

.dash-stat-sep {
    width: 1px;
    height: 12px;
    background: var(--border);
    flex-shrink: 0;
}

/* Secondary actions row */
.dash-actions-row {
    display: flex;
    gap: var(--sp-6);
    padding: var(--sp-4) 0;
}

/* Outstanding payments */
.dash-outstanding {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--sp-8) var(--sp-12);
    margin-top: var(--sp-8);
}

.dash-outstanding-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-8);
    padding: var(--sp-4) 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid var(--border-light);
}
.dash-outstanding-row:last-child { border-bottom: none; }

/* Sticky FAB: always visible */
.dash-fab {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-8) var(--sp-12);
    padding-bottom: max(var(--sp-8), env(safe-area-inset-bottom));
    background: rgba(237,234,230,0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100;
}

.dash-fab-btn {
    font-size: 0.875rem !important;
    padding: var(--sp-8) var(--sp-16) !important;
    max-width: 400px;
    margin: 0 auto;
    display: block !important;
    text-align: center;
}

/* Bottom padding so FAB never covers content */
body:has(.dash-fab) .site-main {
    padding-bottom: 72px;
}

@media (max-width: 768px) {
    .site-main {
        padding: var(--sp-8) var(--sp-8) var(--sp-16);
    }

    .dash-calendar-card {
        padding: var(--sp-4) !important;
        border-radius: var(--radius);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .dash-weekends {
        padding: var(--sp-4) var(--sp-8);
        gap: var(--sp-6);
    }

    body:has(.dash-fab) .site-main {
        padding-bottom: 80px;
    }
}

