/* ================================================================
   ELLA FOODS — "Walnut & Linen"   |   Shared Design System
   All public pages: Slot Booking · Login · Registrations · Portal
   Palette : Warm cream · Walnut brown · Soft taupe · Amber
   Fonts   : Playfair Display (headings) · Manrope (UI)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f7f3ef;
    --surface: #ffffff;
    --s2: #fbf8f5;
    --s3: #f1e9e2;
    --bd: #ddd2c8;
    --bd2: #c7b7aa;
    --brown: #6a5240;
    --brown-h: #513d2f;
    --brown-lt: #f3ece6;
    --brown-mid: rgba(106,82,64,.13);
    --brown-ring: rgba(106,82,64,.18);
    --green: #6a5240;
    --green-h: #513d2f;
    --green-lt: #f3ece6;
    --green-mid: rgba(106,82,64,.13);
    --green-ring: rgba(106,82,64,.18);
    --amber: #a17b60;
    --amber-lt: #f6eee7;
    --amber-bd: rgba(161,123,96,.25);
    --t1: #2f2722;
    --t2: #5f534b;
    --t3: #8c7f76;
    --ok: #6a5240;
    --ok-bg: #f3ece6;
    --ok-bd: #d7c8bc;
    --err: #9b3f35;
    --err-bg: #fbefed;
    --err-bd: #e7c8c3;
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --sh-sm: 0 1px 3px rgba(0,0,0,.07),0 1px 2px rgba(0,0,0,.05);
    --sh-card: 0 4px 16px rgba(0,0,0,.07),0 1px 4px rgba(0,0,0,.05);
    --sh-md: 0 8px 30px rgba(0,0,0,.10);
    --sh-lg: 0 16px 48px rgba(0,0,0,.13);
    --tr: .17s ease;
    --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='none'/%3E%3Ccircle cx='1' cy='1' r='.4' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='3' cy='3' r='.4' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope',sans-serif !important;
    background: var(--bg) !important;
    color: var(--t1) !important;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

/* ================================================================
   APP SHELL (slot booking / two-column layout)
   ================================================================ */
.app {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 270px;
    flex-shrink: 0;
    background: var(--brown);
    display: flex;
    flex-direction: column;
    padding: 36px 28px 28px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

    .sidebar::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--noise);
        pointer-events: none;
    }

.sidebar__top {
    position: relative;
    flex: 1;
}

.sidebar__logo-box {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.sidebar__logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.sidebar__brand {
    font-family: 'Playfair Display',serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.sidebar__tagline {
    font-size: .81rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 36px;
}

.sidebar__step-title {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 14px;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .step-item:last-child {
        border-bottom: none;
    }

.step-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: 1.5px solid rgba(255,255,255,.6);
    flex-shrink: 0;
    margin-top: 3px;
}

.step-item__text {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    line-height: 1.4;
}

.sidebar__foot {
    position: relative;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .79rem;
    color: rgba(255,255,255,.45);
}

    .sidebar__foot a {
        color: rgba(255,255,255,.85) !important;
        font-weight: 600;
        text-decoration: none;
        transition: color var(--tr);
    }

        .sidebar__foot a:hover {
            color: #fff !important;
        }

.main {
    flex: 1;
    min-width: 0;
    padding: 36px 40px 72px;
    overflow-y: auto;
}

.mob-bar {
    display: none;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--bd);
}

.mob-bar__logo {
    height: 42px;
    object-fit: contain;
}

.mob-bar__title {
    font-family: 'Playfair Display',serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown);
}

.card-block {
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: var(--r-xl);
    padding: 26px;
    margin-bottom: 18px;
    box-shadow: var(--sh-card);
    transition: box-shadow var(--tr);
}

    .card-block:hover {
        box-shadow: var(--sh-md);
    }

.card-block__label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 16px;
}

.label-icon {
    width: 14px;
    height: 14px;
    color: var(--brown);
    flex-shrink: 0;
}

.page-hd {
    margin-bottom: 24px;
}

.page-hd__title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.4rem,3vw,1.9rem);
    font-weight: 700;
    color: var(--t1);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.page-hd__sub {
    font-size: .84rem;
    color: var(--t3);
    font-weight: 500;
}

/* ── service type tiles ── */
.svc-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svc-tile {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--bd);
    background: var(--s2);
    cursor: pointer;
    transition: all var(--tr);
    position: relative;
    margin: 0 !important;
    user-select: none;
}

    .svc-tile input[type="radio"] {
        display: none;
    }

    .svc-tile:hover {
        border-color: var(--brown);
        background: var(--brown-lt);
    }

.svc-tile--on {
    border-color: var(--brown) !important;
    background: var(--brown-lt) !important;
    box-shadow: 0 0 0 3px var(--brown-mid);
}

    .svc-tile--on::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 12px;
        right: 12px;
        height: 2.5px;
        background: var(--brown);
        border-radius: 0 0 4px 4px;
    }

.svc-tile__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    background: var(--s3);
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--tr);
}

    .svc-tile__icon svg {
        width: 19px;
        height: 19px;
        color: var(--t2);
        transition: color var(--tr);
    }

.svc-tile--on .svc-tile__icon {
    background: var(--brown-mid);
    border-color: var(--brown-ring);
}

    .svc-tile--on .svc-tile__icon svg {
        color: var(--brown);
    }

.svc-tile__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.svc-tile__name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--t1);
    transition: color var(--tr);
}

.svc-tile__sub {
    font-size: .73rem;
    color: var(--t3);
    font-weight: 500;
}

.svc-tile--on .svc-tile__name {
    color: var(--brown);
}

.svc-tile__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--bd2);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--tr);
}

    .svc-tile__check svg {
        opacity: 0;
        transition: opacity var(--tr);
    }

.svc-tile--on .svc-tile__check {
    background: var(--brown);
    border-color: var(--brown);
}

    .svc-tile--on .svc-tile__check svg {
        opacity: 1;
        color: #fff;
    }

/* ── calendar ── */
.cal-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.cal-month {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.25rem,3vw,1.65rem);
    font-weight: 700;
    color: var(--t1);
    letter-spacing: -0.02em;
    margin-top: 4px;
    line-height: 1.1;
}

.cal-legend {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 4px;
}

.leg {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .74rem;
    font-weight: 600;
    color: var(--t3);
}

.leg__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.--open .leg__dot {
    background: var(--ok);
}

.--full .leg__dot {
    background: var(--err);
}

.cal-names {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 5px;
    margin-bottom: 5px;
}

    .cal-names span {
        text-align: center;
        font-size: .66rem;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase;
        color: var(--t3);
        padding: 5px 0;
    }

.cal-loader {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 48px 0;
    justify-content: center;
    font-size: .84rem;
    color: var(--t3);
    font-weight: 500;
}

.cal-loader__ring {
    display: block;
    width: 22px;
    height: 22px;
    border: 2.5px solid var(--bd2);
    border-top-color: var(--brown);
    border-radius: 50%;
    animation: spin .75s linear infinite;
    flex-shrink: 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 5px;
}

.cal-day {
    position: relative;
    background: var(--s2);
    border: 1px solid var(--bd);
    border-radius: var(--r-md);
    min-height: 76px;
    padding: 9px 8px 7px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: all var(--tr);
    overflow: visible;
}

.cal-day--empty {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

.cal-day--booked {
    background: var(--err-bg) !important;
    border-color: var(--err-bd) !important;
    cursor: not-allowed;
    opacity: .7;
}

.cal-day--available:hover {
    border-color: var(--brown);
    background: var(--brown-lt);
    box-shadow: 0 0 0 2px var(--brown-ring),var(--sh-sm);
    transform: translateY(-2px);
}

.cal-day__num {
    font-family: 'Manrope',sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--t1);
    line-height: 1;
}

.cal-day--booked .cal-day__num {
    color: var(--err);
}

.cal-day--available:hover .cal-day__num {
    color: var(--brown);
}

.cal-day__badge {
    font-size: .59rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 100px;
    align-self: flex-start;
}

.cal-day__badge--available {
    background: var(--ok-bg);
    color: var(--ok);
    border: 1px solid var(--ok-bd);
}

.cal-day__badge--booked {
    background: var(--err-bg);
    color: var(--err);
    border: 1px solid var(--err-bd);
}

.cal-day__book-btn {
    margin-top: auto;
    align-self: flex-end;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brown);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    text-decoration: none !important;
    transition: all var(--tr);
    box-shadow: 0 2px 6px var(--brown-mid);
}

    .cal-day__book-btn:hover {
        background: var(--brown-h);
        transform: scale(1.18) rotate(90deg);
    }

.cal-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 182px;
    background: var(--t1);
    border-radius: var(--r-md);
    padding: 11px 14px;
    font-size: .73rem;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
    z-index: 9999;
    pointer-events: none;
    box-shadow: var(--sh-md);
    white-space: nowrap;
}

    .cal-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: var(--t1);
    }

    .cal-tooltip b {
        color: #fff;
    }

.cal-day:hover > .cal-tooltip {
    display: block;
}

/* ================================================================
   GLOBAL FORM CONTROLS
   ================================================================ */
.form-control, .bk-inp, .inp, .f-inp {
    width: 100%;
    padding: 9px 13px !important;
    border-radius: var(--r-sm) !important;
    border: 1.5px solid var(--bd) !important;
    background: var(--surface) !important;
    color: var(--t1) !important;
    font-family: 'Manrope',sans-serif !important;
    font-size: .86rem !important;
    font-weight: 500 !important;
    transition: border-color var(--tr),box-shadow var(--tr) !important;
}

    .form-control:focus, .bk-inp:focus, .inp:focus, .f-inp:focus {
        border-color: var(--brown) !important;
        box-shadow: 0 0 0 3px var(--brown-mid) !important;
        outline: none !important;
    }

    .form-control::placeholder, .bk-inp::placeholder, .inp::placeholder, .f-inp::placeholder, ::placeholder {
        color: var(--t3) !important;
        font-weight: 400 !important;
    }

.bk-inp--ro, .lblAvailableQtytext {
    background: var(--s2) !important;
    color: var(--t3) !important;
    border-color: var(--bd) !important;
    cursor: not-allowed;
}

.bk-inp--sm {
    display: inline-block !important;
    width: 100px !important;
}

select, .form-select, .bk-sel, .f-sel {
    width: 100%;
    padding: 9px 13px !important;
    border-radius: var(--r-sm) !important;
    border: 1.5px solid var(--bd) !important;
    background: var(--surface) !important;
    color: var(--t1) !important;
    font-family: 'Manrope',sans-serif !important;
    font-size: .86rem !important;
    font-weight: 500 !important;
    appearance: auto;
    cursor: pointer;
    transition: border-color var(--tr) !important;
}

    select:focus, .form-select:focus, .bk-sel:focus, .f-sel:focus {
        border-color: var(--brown) !important;
        box-shadow: 0 0 0 3px var(--brown-mid) !important;
        outline: none !important;
    }

    select option {
        background: var(--surface) !important;
        color: var(--t1) !important;
    }

textarea.form-control {
    resize: vertical;
    min-height: 88px;
}

label, label.form-label {
    display: block;
    font-size: .74rem;
    font-weight: 700;
    color: var(--t2) !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

/* reusable radio row */
.r-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.r-opt {
    cursor: pointer;
    margin: 0 !important;
}

    .r-opt input[type="radio"] {
        display: none;
    }

.r-opt__face {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--bd);
    background: var(--surface);
    color: var(--t2) !important;
    font-size: .83rem;
    font-weight: 600;
    transition: all var(--tr);
    user-select: none;
}

.r-opt input:checked + .r-opt__face {
    background: var(--brown-lt);
    border-color: var(--brown);
    color: var(--brown) !important;
    box-shadow: 0 0 0 2px var(--brown-mid);
}

.r-opt:hover .r-opt__face {
    border-color: var(--brown);
    color: var(--brown) !important;
}

/* file upload */
.f-file, .bk-file {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: var(--r-sm);
    border: 1.5px dashed var(--bd2);
    background: var(--s2);
    color: var(--t2) !important;
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
    width: 100%;
    margin: 0 !important;
}

    .f-file:hover, .bk-file:hover {
        border-color: var(--brown);
        background: var(--brown-lt);
        color: var(--brown) !important;
    }

.bk-file-inp {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

/* ================================================================
   PRIMARY BUTTONS
   ================================================================ */
.cta-btn, .btn-success, .btn-warning, .btn-danger, button[type="submit"], .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 11px 22px !important;
    border-radius: var(--r-sm) !important;
    font-family: 'Manrope',sans-serif !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    background: var(--brown) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 3px 12px var(--brown-ring) !important;
    transition: all var(--tr) !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

    .cta-btn:hover, .btn-success:hover, .btn-warning:hover, .btn-danger:hover, button[type="submit"]:hover, .btn-primary:hover {
        background: var(--brown-h) !important;
        color: #fff !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 18px var(--brown-ring) !important;
    }

.bk-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 26px;
    border-radius: var(--r-sm);
    font-family: 'Manrope',sans-serif;
    font-size: .92rem;
    font-weight: 700;
    background: var(--brown);
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 14px var(--brown-ring);
    transition: all var(--tr);
}

    .bk-cta:hover {
        background: var(--brown-h) !important;
        color: #fff !important;
        transform: translateY(-1px);
    }

.bk-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 100px;
    border: 1.5px solid var(--brown);
    background: transparent;
    color: var(--brown) !important;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: all var(--tr);
    white-space: nowrap;
}

    .bk-ghost:hover {
        background: var(--brown-lt) !important;
    }

/* ================================================================
   BOOKING MODAL
   ================================================================ */
.modal-content, .bk-modal {
    background: var(--surface) !important;
    border: 1px solid var(--bd) !important;
    border-radius: var(--r-xl) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.15) !important;
    overflow: hidden;
}

.modal-header, .bk-hd {
    background: var(--brown) !important;
    border-bottom: none !important;
    padding: 18px 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.bk-hd__left {
    display: flex;
    align-items: center;
    gap: 13px;
}

.bk-hd__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.bk-hd__title {
    font-family: 'Playfair Display',serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 2px !important;
    line-height: 1.2 !important;
}

.bk-hd__sub {
    font-size: .73rem;
    color: rgba(255,255,255,.6);
    margin: 0;
}

.bk-close {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--r-xs);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    cursor: pointer;
    transition: all var(--tr);
    flex-shrink: 0;
}

    .bk-close:hover {
        background: rgba(255,255,255,.28);
        color: #fff;
    }

.bk-body {
    padding: 22px 24px 26px !important;
}

.bk-sec {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bd);
}

    .bk-sec:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
    }

.bk-sec__title {
    font-family: 'Manrope',sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.bk-sec__n {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brown);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-opt {
    font-size: .78em;
    font-weight: 400;
    color: var(--t3);
    font-style: italic;
}

.bk-lbl {
    display: block;
    font-size: .74rem;
    font-weight: 700;
    color: var(--t2) !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.bk-hint {
    font-size: .72rem;
    color: var(--t3);
    line-height: 1.45;
    margin: -3px 0 8px;
}

.bk-req {
    color: var(--err);
}

.bk-var-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.bk-lmt {
    font-size: .75rem;
    color: var(--err);
    font-weight: 600;
    flex: 1;
}

    .bk-lmt a {
        color: var(--err) !important;
        font-weight: 700;
    }

.bk-radio-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bk-radio {
    cursor: pointer;
    margin: 0 !important;
}

    .bk-radio input[type="radio"] {
        display: none;
    }

.bk-radio__face {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--bd);
    background: var(--surface);
    color: var(--t2) !important;
    font-size: .83rem;
    font-weight: 600;
    transition: all var(--tr);
    user-select: none;
}

.bk-radio input:checked + .bk-radio__face {
    background: var(--brown-lt);
    border-color: var(--brown);
    color: var(--brown) !important;
    box-shadow: 0 0 0 2px var(--brown-mid);
}

.bk-radio:hover .bk-radio__face {
    border-color: var(--brown);
    color: var(--brown) !important;
}

.bk-confirm {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding: 22px;
    background: var(--s2);
    border: 1px solid var(--bd);
    border-radius: var(--r-lg);
}

.bk-token {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .84rem;
    color: var(--t2);
    background: var(--amber-lt);
    border: 1px solid var(--amber-bd);
    padding: 10px 16px;
    border-radius: var(--r-sm);
    width: 100%;
    font-weight: 500;
}

    .bk-token svg {
        color: var(--amber);
        flex-shrink: 0;
    }

    .bk-token strong {
        color: var(--amber);
        font-weight: 700;
    }

.bk-chk {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: .84rem;
    color: var(--t2);
    font-weight: 500;
    margin: 0 !important;
    user-select: none;
}

    .bk-chk input[type="checkbox"] {
        display: none;
    }

.bk-chk__box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--bd2);
    border-radius: 4px;
    background: var(--surface);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr);
}

.bk-chk input:checked + .bk-chk__box {
    background: var(--brown);
    border-color: var(--brown);
}

    .bk-chk input:checked + .bk-chk__box::after {
        content: '';
        width: 9px;
        height: 5px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
        display: block;
    }

.bk-link {
    color: var(--brown) !important;
    font-weight: 700;
    text-decoration: underline;
}

.bk-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 11px 14px;
    border-radius: var(--r-sm);
    background: var(--err-bg);
    border: 1px solid var(--err-bd);
    color: var(--err) !important;
    font-size: .82rem;
    font-weight: 600;
    width: 100%;
}

    .bk-alert svg {
        flex-shrink: 0;
        margin-top: 1px;
    }

.bk-tbl-wrap {
    border: 1px solid var(--bd);
    border-radius: var(--r-md);
    overflow: hidden;
}

.bk-tbl {
    background: var(--surface) !important;
    color: var(--t1) !important;
    margin: 0 !important;
}

    .bk-tbl thead tr {
        background: var(--s2) !important;
    }

    .bk-tbl thead th, .bk-tbl thead td {
        font-size: .71rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: .07em !important;
        color: var(--t3) !important;
        border-bottom: 1px solid var(--bd) !important;
        padding: 10px 12px !important;
        background: transparent !important;
    }

    .bk-tbl tbody td {
        padding: 8px 10px !important;
        border-bottom: 1px solid var(--bd) !important;
        vertical-align: middle;
    }

/* ================================================================
   TABLE (general)
   ================================================================ */
.table {
    color: var(--t1) !important;
    border-color: var(--bd) !important;
}

    .table th {
        color: var(--t2) !important;
        font-weight: 700;
    }

.table-bordered, .table-bordered td, .table-bordered th {
    border-color: var(--bd) !important;
}

/* ================================================================
   HOME PORTAL
   ================================================================ */
.portal-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.portal-card {
    width: 100%;
    max-width: 460px;
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    overflow: hidden;
    animation: fadeUp .45s ease both;
}

.portal-top {
    background: var(--brown);
    padding: 30px 26px 24px;
    text-align: center;
    position: relative;
}

    .portal-top::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--noise);
        pointer-events: none;
    }

.portal-top__logo {
    width: 74px;
    height: 74px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto 16px;
    position: relative;
}

    .portal-top__logo img {
        width: 57px;
        height: 57px;
        object-fit: contain;
    }

.portal-top__title {
    font-family: 'Playfair Display',serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    margin-bottom: 5px;
}

.portal-top__sub {
    font-size: .79rem;
    color: rgba(255,255,255,.6);
    font-weight: 400;
    position: relative;
}

.portal-body {
    padding: 22px 22px 16px;
}

.portal-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.portal-action {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--bd);
    background: var(--s2);
    text-decoration: none !important;
    transition: all var(--tr);
}

    .portal-action:hover {
        border-color: var(--brown);
        background: var(--brown-lt);
        transform: translateX(4px);
        box-shadow: var(--sh-sm);
    }

.portal-action__ico {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    background: var(--s3);
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--tr);
}

    .portal-action__ico svg {
        width: 17px;
        height: 17px;
        color: var(--t2);
        transition: color var(--tr);
    }

.portal-action:hover .portal-action__ico {
    background: var(--brown-mid);
    border-color: var(--brown-ring);
}

    .portal-action:hover .portal-action__ico svg {
        color: var(--brown);
    }

.portal-action__info {
    flex: 1;
}

.portal-action__name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--t1);
    transition: color var(--tr);
}

.portal-action__desc {
    font-size: .72rem;
    color: var(--t3);
    font-weight: 500;
    margin-top: 2px;
}

.portal-action:hover .portal-action__name {
    color: var(--brown);
}

.portal-action__arr {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--bd2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t3);
    flex-shrink: 0;
    transition: all var(--tr);
}

.portal-action:hover .portal-action__arr {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}

.portal-footer {
    padding: 14px 22px 18px;
    text-align: center;
    font-size: .77rem;
    color: var(--t3);
    border-top: 1px solid var(--bd);
}

    .portal-footer a {
        color: var(--brown) !important;
        font-weight: 600;
        text-decoration: none;
    }

        .portal-footer a:hover {
            text-decoration: underline;
        }

/* ================================================================
   AUTH (Login / Forgot PW)
   ================================================================ */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.auth-split {
    display: flex;
    width: 100%;
    max-width: 880px;
    background: var(--surface);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    overflow: hidden;
    animation: fadeUp .45s ease both;
}

.auth-hero {
    width: 290px;
    flex-shrink: 0;
    background: var(--brown);
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .auth-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--noise);
        pointer-events: none;
    }

.auth-hero__top {
    position: relative;
    margin-bottom: 26px;
}

.auth-hero__logo {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

    .auth-hero__logo img {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }

.auth-hero__title {
    font-family: 'Playfair Display',serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 9px;
}

.auth-hero__desc {
    font-size: .79rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    font-weight: 400;
}

.auth-hero__feats {
    position: relative;
    flex: 1;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 20px;
}

.auth-feat {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
}

.auth-feat__ico {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.1);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255,255,255,.7);
}

    .auth-feat__ico svg {
        width: 13px;
        height: 13px;
    }

.auth-feat__text {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

.auth-hero__foot {
    position: relative;
    font-size: .76rem;
    color: rgba(255,255,255,.4);
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: auto;
}

    .auth-hero__foot a {
        color: rgba(255,255,255,.8) !important;
        font-weight: 600;
        text-decoration: none;
    }

        .auth-hero__foot a:hover {
            color: #fff !important;
        }

.auth-form {
    flex: 1;
    padding: 42px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form__hd {
    margin-bottom: 30px;
}

.auth-form__title {
    font-family: 'Playfair Display',serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--t1);
    letter-spacing: -0.02em;
    margin-bottom: 7px;
}

.auth-form__sub {
    font-size: .84rem;
    color: var(--t3);
    font-weight: 500;
}

.auth-field {
    margin-bottom: 18px;
}

.auth-field__lbl {
    display: block;
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--t2) !important;
    margin-bottom: 7px;
}

.auth-field__pw {
    position: relative;
    display: flex;
    align-items: center;
}

    .auth-field__pw .form-control {
        padding-right: 44px !important;
    }

.auth-field__toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--t3);
    font-size: 1rem;
    padding: 6px;
    display: flex;
    align-items: center;
    transition: color var(--tr);
}

    .auth-field__toggle:hover {
        color: var(--brown);
    }

.auth-chk {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: .83rem;
    color: var(--t2);
    font-weight: 500;
    margin: 4px 0 20px;
}

    .auth-chk input {
        display: none;
    }

.auth-chk__box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--bd2);
    border-radius: 4px;
    background: var(--surface);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr);
}

.auth-chk input:checked + .auth-chk__box {
    background: var(--brown);
    border-color: var(--brown);
}

    .auth-chk input:checked + .auth-chk__box::after {
        content: '';
        width: 9px;
        height: 5px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
        display: block;
    }

.auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--r-sm);
    font-family: 'Manrope',sans-serif;
    font-size: .92rem;
    font-weight: 700;
    background: var(--brown);
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 12px var(--brown-ring);
    transition: all var(--tr);
}

    .auth-submit:hover {
        background: var(--brown-h) !important;
        color: #fff !important;
        transform: translateY(-1px);
    }

.auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-link {
    font-size: .81rem;
    font-weight: 600;
    color: var(--t3) !important;
    text-decoration: none;
    transition: color var(--tr);
}

    .auth-link:hover {
        color: var(--brown) !important;
    }

.auth-link--primary {
    color: var(--brown) !important;
    font-weight: 700;
}

.auth-divider {
    margin: 22px 0 16px;
    text-align: center;
    position: relative;
    font-size: .69rem;
    font-weight: 700;
    color: var(--t3);
    letter-spacing: .05em;
}

    .auth-divider::before, .auth-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 42%;
        height: 1px;
        background: var(--bd);
    }

    .auth-divider::before {
        left: 0;
    }

    .auth-divider::after {
        right: 0;
    }

.auth-extra {
    display: flex;
    justify-content: center;
    gap: 22px;
}

/* Minimal centered card (ForgotPW) */
.auth-single {
    width: 100%;
    max-width: 400px;
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    overflow: hidden;
    animation: fadeUp .45s ease both;
}

.auth-single__hd {
    background: var(--brown);
    padding: 28px 26px 22px;
    text-align: center;
    position: relative;
}

    .auth-single__hd::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--noise);
        pointer-events: none;
    }

.auth-single__logo {
    width: 62px;
    height: 62px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto 14px;
    position: relative;
}

    .auth-single__logo img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

.auth-single__title {
    font-family: 'Playfair Display',serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    margin-bottom: 5px;
}

.auth-single__sub {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    position: relative;
    line-height: 1.5;
}

.auth-single__body {
    padding: 24px 26px 26px;
}

.auth-single__foot {
    text-align: center;
    padding: 0 26px 20px;
    font-size: .79rem;
    color: var(--t3);
}

    .auth-single__foot a {
        color: var(--brown) !important;
        font-weight: 600;
        text-decoration: none;
    }

        .auth-single__foot a:hover {
            text-decoration: underline;
        }

/* ================================================================
   REGISTRATION PAGES
   ================================================================ */
.reg-body {
    min-height: 100vh;
    padding: 28px 16px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reg-card {
    width: 100%;
    max-width: 960px;
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    overflow: hidden;
    animation: fadeUp .45s ease both;
}

.reg-card__hd {
    background: var(--brown);
    padding: 24px 30px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

    .reg-card__hd::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--noise);
        pointer-events: none;
    }

.reg-card__logo {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

    .reg-card__logo img {
        width: 44px;
        height: 44px;
        object-fit: contain;
    }

.reg-card__hd-text {
    position: relative;
}

.reg-card__title {
    font-family: 'Playfair Display',serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.reg-card__sub {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
}

.reg-card__body {
    padding: 26px 30px 30px;
}

.reg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
}

    .reg-form-grid .mb-3 {
        margin-bottom: 16px;
    }

.reg-col-full {
    grid-column: 1 / -1;
}

.reg-divider {
    grid-column: 1 / -1;
    font-family: 'Playfair Display',serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--t1);
    padding: 14px 0 8px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.reg-divider__n {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brown);
    color: #fff;
    font-family: 'Manrope',sans-serif;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px 22px;
    border-top: 1px solid var(--bd);
    background: var(--s2);
    flex-wrap: wrap;
    gap: 12px;
}

    .reg-footer p {
        font-size: .79rem;
        color: var(--t3);
        margin: 0;
    }

    .reg-footer a {
        color: var(--brown) !important;
        font-weight: 600;
        text-decoration: none;
    }

        .reg-footer a:hover {
            text-decoration: underline;
        }

/* ================================================================
   FOOTER (in _Layout)
   ================================================================ */
footer, .site-footer {
    background: var(--surface) !important;
    border-top: 1px solid var(--bd) !important;
    padding: 18px 28px !important;
}

.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__copy {
    font-size: .75rem;
    color: var(--t3);
    font-weight: 500;
}

    .site-footer__copy a {
        color: var(--brown) !important;
        font-weight: 600;
        text-decoration: none;
    }

        .site-footer__copy a:hover {
            text-decoration: underline;
        }

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}

.site-footer__link {
    font-size: .74rem;
    font-weight: 600;
    color: var(--t2) !important;
    text-decoration: none;
    padding: 5px 9px;
    border-radius: var(--r-xs);
    transition: all var(--tr);
}

    .site-footer__link:hover {
        background: var(--brown-lt);
        color: var(--brown) !important;
    }

.site-footer__sep {
    width: 1px;
    height: 13px;
    background: var(--bd2);
    flex-shrink: 0;
}

/* Existing Bootstrap overrides */
.bg-primary.bg-soft {
    background: var(--surface) !important;
}

.text-primary {
    color: var(--brown) !important;
}

.text-danger {
    color: var(--err) !important;
}

.text-muted {
    color: var(--t3) !important;
}

.card {
    background: var(--surface) !important;
    border-color: var(--bd) !important;
    box-shadow: var(--sh-card) !important;
}

.fw-medium {
    font-weight: 600 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display',serif;
    color: var(--t1);
}

/* PAN/GST uppercase helpers */
.PAN, .gst {
    text-transform: uppercase;
}

.error {
    color: var(--err);
    visibility: hidden;
}

.gsterror {
    color: var(--err);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 880px) {
    .app {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        flex-direction: row;
        padding: 14px 18px;
        align-items: center;
    }

    .sidebar__top {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .sidebar__logo-box {
        width: 46px;
        height: 46px;
        border-radius: var(--r-md);
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .sidebar__logo {
        width: 34px;
        height: 34px;
    }

    .sidebar__brand {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

        .sidebar__brand br {
            display: none;
        }

    .sidebar__tagline, .sidebar__steps {
        display: none;
    }

    .sidebar__foot {
        padding-top: 0;
        border-top: none;
        margin-top: 0;
        text-align: right;
    }

    .main {
        padding: 18px 14px 52px;
    }

    .auth-split {
        flex-direction: column;
        max-width: 480px;
    }

    .auth-hero {
        width: 100%;
        flex-direction: row;
        padding: 16px 20px;
        align-items: center;
        gap: 14px;
    }

    .auth-hero__top {
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 1;
        margin-bottom: 0;
    }

    .auth-hero__logo {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

        .auth-hero__logo img {
            width: 36px;
            height: 36px;
        }

    .auth-hero__title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

        .auth-hero__title br {
            display: none;
        }

    .auth-hero__desc, .auth-hero__feats {
        display: none;
    }

    .auth-hero__foot {
        padding-top: 0;
        border-top: none;
        margin-top: 0;
        text-align: right;
    }

    .auth-form {
        padding: 28px 22px;
    }

    .reg-card__hd {
        padding: 18px 18px 16px;
    }

    .reg-card__body {
        padding: 18px 18px 22px;
    }

    .reg-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .reg-col-full, .reg-divider {
        grid-column: auto;
    }

    .reg-footer {
        padding: 14px 18px 18px;
    }

    .site-footer {
        padding: 14px 16px !important;
    }

    .site-footer__links {
        gap: 2px;
    }

    .site-footer__sep {
        display: none;
    }
}

@media (max-width: 560px) {
    .main {
        padding: 12px 10px 44px;
    }

    .card-block {
        padding: 14px 12px;
        border-radius: var(--r-lg);
    }

    .svc-tile {
        min-width: 0;
        padding: 10px 11px;
    }

    .svc-tile__sub, .svc-tile__check {
        display: none;
    }

    .cal-grid {
        gap: 3px;
    }

    .cal-day {
        min-height: 56px;
        padding: 6px 3px 4px;
        border-radius: var(--r-sm);
    }

    .cal-day__num {
        font-size: .84rem;
    }

    .cal-day__badge {
        font-size: .52rem;
        padding: 1px 4px;
    }

    .cal-day__book-btn {
        width: 18px;
        height: 18px;
        font-size: .76rem;
    }

    .cal-names span {
        font-size: .58rem;
    }

    .cal-tooltip {
        display: none !important;
    }

    .bk-body {
        padding: 13px 11px 16px !important;
    }

    .bk-hd {
        padding: 12px 13px !important;
    }

    .bk-confirm {
        padding: 13px;
    }

    .auth-form {
        padding: 22px 16px;
    }

    .reg-card__body {
        padding: 14px 12px 18px;
    }

    .reg-footer {
        padding: 12px 12px 16px;
    }

    .portal-body {
        padding: 16px 14px;
    }

    .site-footer__links {
        display: none;
    }
}

@media (max-width: 380px) {
    .cal-day {
        min-height: 46px;
    }

    .cal-day__badge {
        display: none;
    }

    .cal-day__num {
        font-size: .74rem;
    }
}
