:root {
    --brand-dark: #0c2741;
    --brand-base: #14548b;
    --brand-light: #47a7e8;
    --brand-soft: #e8f4ff;
    --bg: #f3f7fb;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --border: rgba(14, 46, 76, 0.12);
    --ink: #102841;
    --muted: #60758d;
    --success: #14835f;
    --warning: #af6f0f;
    --danger: #b03a2f;
    --shadow-lg: 0 30px 80px rgba(12, 39, 65, 0.14);
    --shadow-md: 0 18px 38px rgba(12, 39, 65, 0.1);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shortcut-band-top: calc(env(safe-area-inset-top) + 100px);
    --shortcut-band-space: 132px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(71, 167, 232, 0.18), transparent 24%),
        radial-gradient(circle at 92% 8%, rgba(12, 39, 65, 0.12), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fa 52%, #f4f8fc 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fa 52%, #f4f8fc 100%);
}

.site-topbar {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding-top: env(safe-area-inset-top);
    background: linear-gradient(180deg, rgba(243, 247, 251, 0.96), rgba(243, 247, 251, 0.72));
    backdrop-filter: blur(16px);
}

.header-shortcuts-band {
    position: sticky;
    top: var(--shortcut-band-top);
    z-index: 1035;
    padding: 0.2rem 0 0.65rem;
    background: linear-gradient(180deg, rgba(243, 247, 251, 0.96), rgba(243, 247, 251, 0.82) 72%, rgba(243, 247, 251, 0));
    backdrop-filter: blur(14px);
}

.page-shell {
    width: min(1180px, calc(100% - 18px));
}

.top-contact {
    background: linear-gradient(90deg, var(--brand-dark), #123b62);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    box-shadow: 0 8px 22px rgba(12, 39, 65, 0.08);
}

.top-contact__inner {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0.7rem 0;
}

.top-contact__item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.main-header {
    position: relative;
    z-index: 1;
    padding: 0.85rem 0 0.85rem;
}

.main-header.is-sticky {
    position: sticky !important;
    top: 0 !important;
    z-index: 1040;
    padding-top: calc(env(safe-area-inset-top) + 0.4rem);
    background: #edf4fb;
    backdrop-filter: none;
    padding-bottom: 0.85rem;
    box-shadow: 0 12px 28px rgba(12, 39, 65, 0.12);
}

.main-header.is-locked {
    position: sticky !important;
    top: 0 !important;
    z-index: 1040;
    padding-top: calc(env(safe-area-inset-top) + 0.24rem);
    padding-bottom: 0.18rem;
    background: #edf4fb;
    backdrop-filter: none;
    box-shadow: 0 10px 24px rgba(12, 39, 65, 0.1);
}

.navbar {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(9, 28, 46, 0.94), rgba(20, 84, 139, 0.9));
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.navbar .page-shell {
    gap: 1rem;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    max-width: 460px;
}

.brand-lockup__logo {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(24, 53, 82, 0.98), rgba(11, 34, 55, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(7, 25, 42, 0.22);
}

.brand-lockup__logo img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 0;
    object-fit: contain;
    border-radius: 12px;
    background: linear-gradient(180deg, #f4f6ee, #e6ebe1);
    box-shadow: inset 0 0 0 1px rgba(12, 39, 65, 0.08);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.brand-lockup__text {
    display: grid;
    gap: 0.08rem;
    line-height: 1.15;
}

.brand-lockup__eyebrow,
.page-kicker,
.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 800;
}

.brand-lockup__eyebrow {
    color: rgba(255, 255, 255, 0.65);
}

.brand-lockup__title,
.display-title,
.panel-title,
.section-title {
    font-family: "Barlow Condensed", Impact, sans-serif;
    letter-spacing: 0.02em;
}

.brand-lockup__title {
    color: #fff;
    font-size: 1.38rem;
    font-weight: 800;
    line-height: 0.96;
}

.brand-lockup__tag {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.7rem;
}

.nav-pill {
    padding: 0.62rem 0.9rem !important;
    border-radius: 999px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.76) !important;
}

.nav-pill:hover,
.nav-pill.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
}

.nav-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.nav-bell__count {
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffcc55;
    color: #183552;
    font-size: 0.72rem;
    font-weight: 800;
}

.notification-menu {
    width: min(380px, calc(100vw - 24px));
    padding: 0;
    border: 1px solid rgba(12, 39, 65, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 44px rgba(12, 39, 65, 0.16);
}

.notification-menu__header,
.notification-menu__footer {
    padding: 1rem 1.1rem;
    background: rgba(232, 244, 255, 0.72);
}

.notification-menu__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.notification-menu__header small,
.notification-menu__footer a {
    color: var(--muted);
    font-weight: 700;
}

.notification-menu__item {
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.1rem;
    border-top: 1px solid rgba(12, 39, 65, 0.06);
    color: var(--ink);
}

.notification-menu__item span,
.notification-menu__item small {
    color: var(--muted);
}

.notification-menu__item.is-unread {
    background: rgba(232, 244, 255, 0.52);
}

.notification-menu__empty {
    padding: 1.1rem;
    color: var(--muted);
}

.nav-cta {
    min-height: 38px;
    padding-inline: 0.9rem;
    border-radius: 999px;
    font-weight: 800;
}

.navbar-profile {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.75rem 1rem;
    min-width: 180px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.navbar-profile small {
    color: rgba(255, 255, 255, 0.68);
}

.navbar-profile strong {
    max-width: 100%;
}

.app-navbar {
    padding: 0.42rem 0.64rem;
}

.app-navbar .navbar-collapse {
    gap: 1rem;
}

.app-navbar .navbar-nav {
    margin-top: 1rem;
    min-width: 0;
}

.app-navbar .nav-link,
.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus {
    color: rgba(255, 255, 255, 0.88);
}

.app-navbar .nav-pill {
    color: rgba(255, 255, 255, 0.88) !important;
}

.app-navbar .nav-pill.active,
.app-navbar .nav-pill:hover,
.app-navbar .nav-pill:focus-visible {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.14);
}

.app-navbar__account {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
    min-width: 0;
}

.app-account-card {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    padding: 0.58rem 0.8rem;
    border-radius: 16px;
    background: #fdfefe;
    border: 1px solid rgba(12, 39, 65, 0.14);
    box-shadow: 0 8px 18px rgba(12, 39, 65, 0.05);
}

.app-account-card strong,
.app-account-card small {
    color: #102841;
}

.app-account-card strong {
    font-weight: 800;
}

.app-account-card small {
    opacity: 1;
    color: #20374f;
}

.header-action-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
    gap: 0.3rem;
    padding: 0.12rem 0 0.08rem;
    align-items: stretch;
    margin-top: 0.04rem;
    border-top: 1px solid rgba(12, 39, 65, 0.08);
    background: #edf4fb;
    position: relative;
    z-index: 2;
}

.header-action-strip__button {
    width: 100%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    text-align: center;
    min-height: 30px;
    padding: 0.28rem 0.48rem;
    font-size: 0.76rem;
    box-shadow: 0 8px 18px rgba(12, 39, 65, 0.05);
}

.header-action-strip__button span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-action-strip .btn-outline-secondary {
    background: #fdfefe;
    border-color: rgba(12, 39, 65, 0.14);
}

.header-action-strip .btn-primary {
    background: linear-gradient(135deg, var(--brand-base), #0f4675);
    border-color: #0f4675;
}

.header-action-strip__identity {
    grid-column: 1 / -1;
    width: auto;
    max-width: 100%;
    padding: 0.02rem 0.1rem 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    justify-self: start;
}

.header-action-strip__identity strong,
.header-action-strip__identity small {
    display: block;
    color: #102841;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-action-strip__identity strong {
    font-size: 0.72rem;
}

.header-action-strip__identity small {
    margin-top: 0.04rem;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 1;
    color: #20374f;
}

.header-action-strip__identity--admin {
    background: transparent;
}

.app-navbar .btn-outline-secondary {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.42);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.14);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.5);
    --bs-btn-active-bg: rgba(255, 255, 255, 0.18);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.58);
}

.app-navbar .btn-primary {
    --bs-btn-bg: rgba(255, 255, 255, 0.14);
    --bs-btn-border-color: rgba(255, 255, 255, 0.14);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.2);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.2);
    --bs-btn-active-bg: rgba(255, 255, 255, 0.24);
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.24);
    --bs-btn-color: #ffffff;
}

.app-navbar-toggler {
    padding: 0.55rem 0.7rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.app-navbar-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.mobile-shortcuts {
    display: grid;
    gap: 0.7rem;
    margin-top: 0;
    padding: 0.85rem;
    border-radius: 22px;
    border: 1px solid rgba(12, 39, 65, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 254, 0.96));
    box-shadow: 0 14px 26px rgba(12, 39, 65, 0.07);
}

.mobile-shortcuts__nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 0.6rem;
}

.mobile-shortcuts__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0.6rem;
    padding-top: 0;
}

.mobile-shortcut-btn {
    width: 100%;
    min-height: 48px;
    padding: 0.78rem 0.9rem;
    border-radius: 16px;
    font-size: 0.98rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    text-align: left;
    box-shadow: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mobile-shortcut-btn i {
    font-size: 0.98rem;
    flex: 0 0 auto;
}

.mobile-shortcut-btn span {
    line-height: 1.1;
}

.mobile-shortcut-btn:hover,
.mobile-shortcut-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(12, 39, 65, 0.08);
}

.mobile-shortcut-btn.btn-primary {
    background: linear-gradient(135deg, var(--brand-base), #0f4675);
    border-color: #0f4675;
}

.mobile-shortcut-btn--with-count strong {
    min-width: 1.55rem;
    height: 1.55rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffcc55;
    color: #183552;
    font-size: 0.74rem;
    margin-left: auto;
}

.mobile-shortcuts__account {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.72rem 0.85rem;
    border-radius: 18px;
    border: 1px solid rgba(12, 39, 65, 0.08);
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.mobile-shortcuts__avatar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-base));
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 10px 18px rgba(12, 39, 65, 0.14);
}

.mobile-shortcuts__profile {
    display: grid;
    gap: 0.18rem;
    text-align: left;
    min-width: 0;
}

.mobile-shortcuts__profile strong {
    color: var(--ink);
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-shortcuts__profile small {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.01em;
}

.mobile-shortcut-btn--logout {
    min-width: 96px;
    justify-content: center;
    padding-inline: 0.95rem;
}

.hero-card,
.section-card,
.soft-card,
.stat-card,
.dashboard-card,
.slot-card,
.timeline-card {
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(71, 167, 232, 0.3), transparent 26%),
        linear-gradient(135deg, rgba(8, 28, 46, 0.98), rgba(21, 82, 135, 0.94));
    color: #fff;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
    pointer-events: none;
}

.display-title {
    font-size: clamp(2.3rem, 6vw, 4.2rem);
    line-height: 0.95;
    margin: 0.5rem 0 0.8rem;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero-copy {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.96rem;
    line-height: 1.62;
    text-wrap: pretty;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
}

.hero-side-card {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-logo-panel {
    display: grid;
    place-items: center;
    min-height: 280px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-logo-panel img {
    width: min(300px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 36px;
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.18));
}

.section-card,
.soft-card,
.stat-card,
.dashboard-card,
.timeline-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
}

.section-card,
.soft-card,
.dashboard-card,
.timeline-card {
    padding: 1.35rem;
}

.soft-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.92));
}

.section-kicker {
    color: var(--brand-base);
    margin-bottom: 0.45rem;
}

.panel-title,
.section-title {
    margin: 0;
    font-size: clamp(1.7rem, 3.4vw, 2.25rem);
    line-height: 1;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.lead-copy,
.muted {
    color: var(--muted);
}

.form-control,
.form-select,
textarea.form-control {
    min-height: 48px;
    border-radius: 16px;
    border-color: rgba(12, 39, 65, 0.14);
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: rgba(20, 84, 139, 0.5);
}

.form-label {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.45rem;
}

.helper-text {
    color: var(--muted);
    font-size: 0.86rem;
}

.password-field {
    position: relative;
}

.password-field .form-control {
    padding-right: 3.75rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 84, 139, 0.08);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    background: rgba(20, 84, 139, 0.16);
    color: var(--brand-base);
}

.auth-highlight {
    height: 100%;
    background:
        radial-gradient(circle at top left, rgba(71, 167, 232, 0.28), transparent 24%),
        linear-gradient(135deg, rgba(8, 28, 46, 0.98), rgba(21, 82, 135, 0.94));
    color: #fff;
}

.auth-highlight .lead-copy,
.auth-highlight .muted,
.auth-highlight li,
.auth-highlight p {
    color: rgba(255, 255, 255, 0.82);
}

.list-check,
.info-list,
.dashboard-list,
.customer-list {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-check li,
.info-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.list-check i,
.info-list i {
    color: var(--brand-light);
}

.stat-card {
    padding: 1.15rem 1.2rem;
    height: 100%;
}

.stat-card__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    font-weight: 800;
}

.stat-card__value {
    margin-top: 0.35rem;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.8rem, 4.3vw, 2.45rem);
    line-height: 1;
}

.stat-card__meta {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.page-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.1rem;
}

.page-header__copy {
    max-width: 760px;
}

.header-actions,
.actions-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.flash {
    margin-bottom: 1rem;
    padding: 0.88rem 1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 700;
}

.flash.success {
    background: rgba(20, 131, 95, 0.12);
    color: var(--success);
    border-color: rgba(20, 131, 95, 0.18);
}

.flash.warning {
    background: rgba(175, 111, 15, 0.12);
    color: var(--warning);
    border-color: rgba(175, 111, 15, 0.18);
}

.flash.danger {
    background: rgba(176, 58, 47, 0.12);
    color: var(--danger);
    border-color: rgba(176, 58, 47, 0.18);
}

.flash.info {
    background: rgba(20, 84, 139, 0.1);
    color: var(--brand-base);
    border-color: rgba(20, 84, 139, 0.18);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.58rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
}

.badge.success {
    background: rgba(20, 131, 95, 0.12);
    color: var(--success);
}

.badge.warning {
    background: rgba(175, 111, 15, 0.12);
    color: var(--warning);
}

.badge.danger {
    background: rgba(176, 58, 47, 0.12);
    color: var(--danger);
}

.badge.info {
    background: rgba(20, 84, 139, 0.12);
    color: var(--brand-base);
}

.badge.neutral {
    background: rgba(96, 117, 141, 0.12);
    color: var(--muted);
}

.table-shell {
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
}

.table-shell--wide {
    overflow-x: auto;
    overflow-y: hidden;
}

.table-shell--wide .table {
    min-width: 900px;
}

.table-actions-cell {
    min-width: 210px;
}

.table-actions-cell .actions-inline {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
}

.table-actions-cell .inline-form,
.table-actions-cell .inline-form .btn,
.table-actions-cell > .actions-inline > .btn {
    width: 100%;
}

.bookings-table td {
    vertical-align: top;
}

.bookings-table td:nth-child(1) {
    min-width: 260px;
}

.bookings-table td:nth-child(2) {
    min-width: 180px;
}

.bookings-table td:nth-child(3) {
    min-width: 190px;
}

.table {
    margin-bottom: 0;
    --bs-table-bg: transparent;
}

.table > :not(caption) > * > * {
    padding: 1rem 1.05rem;
    border-bottom-color: rgba(12, 39, 65, 0.08);
}

.table thead th {
    background: rgba(232, 244, 255, 0.78);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.empty-state {
    padding: 1.6rem;
    border-radius: 24px;
    border: 1px dashed rgba(12, 39, 65, 0.2);
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
}

.slot-card {
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}

.slot-card:hover,
.slot-card.is-selected {
    transform: translateY(-2px);
    border-color: rgba(20, 84, 139, 0.32);
    box-shadow: 0 18px 42px rgba(12, 39, 65, 0.16);
}

.slot-card__time {
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 2rem;
    line-height: 0.95;
}

.slot-card__meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.mini-info {
    display: grid;
    gap: 0.9rem;
}

.mini-info__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(12, 39, 65, 0.08);
    padding-bottom: 0.75rem;
}

.mini-info__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-list {
    display: grid;
    gap: 1rem;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-step__index {
    width: 2.25rem;
    height: 2.25rem;
    flex: 0 0 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    color: #fff;
    font-weight: 800;
}

.inline-form {
    display: inline-flex;
}

.dashboard-list li,
.customer-list li {
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(232, 244, 255, 0.58);
    border: 1px solid rgba(12, 39, 65, 0.08);
}

.customer-booking-cards {
    display: grid;
    gap: 1rem;
}

.customer-booking-card {
    padding: 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(12, 39, 65, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
    box-shadow: var(--shadow-md);
}

.customer-booking-card__header {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    align-items: flex-start;
}

.customer-booking-card__meta {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.customer-booking-card__row {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(12, 39, 65, 0.08);
}

.customer-booking-card__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.customer-booking-card .actions-inline {
    flex-direction: column;
    align-items: stretch;
}

.customer-booking-card .inline-form,
.customer-booking-card .inline-form .btn,
.customer-booking-card .actions-inline > .btn {
    width: 100%;
}

.notification-list {
    display: grid;
    gap: 1.15rem;
}

.notification-card {
    position: relative;
    padding: 1.3rem;
    border-radius: 24px;
    border: 1px solid rgba(12, 39, 65, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 36px rgba(12, 39, 65, 0.06);
}

.notification-card.is-unread {
    background: linear-gradient(180deg, rgba(232, 244, 255, 0.8), rgba(255, 255, 255, 0.96));
    border-color: rgba(20, 84, 139, 0.18);
    box-shadow: 0 22px 40px rgba(12, 61, 106, 0.1);
}

.notification-card__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.notification-card__title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
}

.notification-card__time {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.notification-card__actions {
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 39, 65, 0.1);
}

.vehicle-price-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-price-card .stat-card__label {
    min-height: 3.2rem;
    line-height: 1.35;
    letter-spacing: 0.14em;
    overflow-wrap: anywhere;
}

.vehicle-price-card .stat-card__value {
    font-size: clamp(2rem, 5vw, 2.5rem);
}

.vehicle-price-card .stat-card__meta {
    line-height: 1.45;
}

.booking-addon {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(12, 39, 65, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.booking-addon__check {
    flex: 0 0 auto;
}

.booking-addon__copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.booking-addon__price {
    margin-left: auto;
    font-weight: 800;
    color: var(--brand-base);
    white-space: nowrap;
}

.booking-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.booking-flow__step {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(12, 39, 65, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
    text-align: center;
}

.booking-flow__step strong {
    width: 1.9rem;
    height: 1.9rem;
    margin: 0 auto;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 84, 139, 0.1);
    color: var(--brand-base);
    font-size: 0.9rem;
}

.booking-flow__step span {
    font-size: 0.84rem;
    font-weight: 700;
}

.booking-flow__step.is-active {
    border-color: rgba(20, 84, 139, 0.3);
    background: linear-gradient(180deg, rgba(232, 244, 255, 0.92), rgba(255, 255, 255, 0.94));
    color: var(--ink);
}

.booking-flow__step.is-active strong {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    color: #fff;
}

.booking-selected-slot {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(12, 39, 65, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(232, 244, 255, 0.76), rgba(255, 255, 255, 0.94));
}

.booking-selected-slot__eyebrow,
.booking-section-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand-base);
}

.booking-selected-slot__title {
    margin-top: 0.35rem;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 2rem;
    line-height: 0.95;
    color: var(--ink);
}

.booking-selected-slot__meta {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.model-search-results {
    display: grid;
    gap: 0.65rem;
    margin: 0.85rem 0 1rem;
}

.model-search-chip {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(12, 39, 65, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.model-search-chip strong {
    font-size: 0.96rem;
}

.model-search-chip span {
    flex: 0 0 auto;
    color: var(--brand-base);
    font-weight: 800;
    white-space: nowrap;
}

.model-search-chip:hover,
.model-search-chip:focus-visible {
    border-color: rgba(20, 84, 139, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(12, 39, 65, 0.1);
}

.model-search-empty {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(232, 244, 255, 0.65);
    color: var(--muted);
    font-size: 0.92rem;
}

.booking-section-label {
    margin-bottom: 0.75rem;
}

.booking-price-guide {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(12, 39, 65, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
}

.booking-price-guide summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--brand-base);
}

.booking-price-guide summary::-webkit-details-marker {
    display: none;
}

.booking-price-guide[open] summary {
    margin-bottom: 0.9rem;
}

.booking-cart-card {
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(12, 39, 65, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(232, 244, 255, 0.78), rgba(255, 255, 255, 0.92));
}

.booking-cart-card__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(12, 39, 65, 0.08);
}

.booking-cart-card__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.booking-cart-card__row--total {
    font-size: 1.05rem;
}

.metric-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.metric-line:last-child {
    margin-bottom: 0;
}

.app-footer {
    margin-top: auto;
    padding: 1.5rem 0 2rem;
}

.app-footer .container {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(8, 28, 46, 0.98), rgba(21, 82, 135, 0.94));
    color: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-lg);
    padding: 1.6rem;
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-brand img {
    width: 96px;
    height: 96px;
    max-height: none;
    border-radius: 24px;
    background: transparent;
    padding: 0;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(7, 25, 42, 0.24);
}

.footer-brand__title {
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 2rem;
    color: #fff;
}

.footer-meta {
    display: grid;
    gap: 0.7rem;
}

.footer-meta span {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.footer-copy {
    margin-top: 1rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
}

.wa-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1cc466, #0f9b52);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
}

.wa-fab i {
    font-size: 1.35rem;
}

@media (max-width: 991px) {
    .top-contact__inner,
    .footer-actions,
    .footer-copy {
        justify-content: flex-start;
        text-align: left;
    }

    .navbar {
        border-radius: 24px;
    }

    .main-header {
        padding: 0.36rem 0 0.4rem;
    }

    .main-header.is-sticky,
    .main-header.is-locked {
        padding-top: calc(env(safe-area-inset-top) + 0.24rem);
        padding-bottom: 0.26rem;
    }

    .app-navbar {
        padding: 0.44rem 0.62rem;
    }

    .brand-lockup {
        gap: 0.58rem;
    }

    .brand-lockup__logo {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        padding: 3px;
        border-radius: 15px;
    }

    .brand-lockup__logo img {
        border-radius: 11px;
        padding: 0;
    }

    .brand-lockup__eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .brand-lockup__title {
        font-size: 1.2rem;
        line-height: 0.92;
    }

    .brand-lockup__tag {
        display: none;
    }

    .notification-menu {
        width: min(360px, calc(100vw - 20px));
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.2rem);
    }

    .page-header {
        margin-bottom: 1.1rem;
    }

    .stat-card {
        padding: 1.15rem 1.2rem;
    }

    .stat-card__value {
        font-size: clamp(1.9rem, 5vw, 2.5rem);
    }
}

@media (max-width: 1399px) {
    .top-contact {
        display: none;
    }

    .header-shortcuts-band {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--shortcut-band-top);
        z-index: 1039;
    }

    .mobile-shortcuts {
        display: grid;
    }

}

@media (max-width: 1399px) {
    .app-navbar {
        padding: 0.42rem 0.62rem;
    }

    .app-navbar .navbar-collapse {
        display: none !important;
    }

    .app-navbar .navbar-nav {
        width: 100%;
        gap: 0.55rem !important;
    }

    .app-navbar__links {
        display: none;
    }

    .app-navbar .nav-item,
    .app-navbar .dropdown {
        width: 100%;
    }

    .app-navbar .nav-pill,
    .app-navbar .dropdown-toggle,
    .app-account-card {
        width: 100%;
    }

    .brand-lockup {
        max-width: 100%;
        gap: 0.54rem;
    }

    .brand-lockup__logo {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        padding: 3px;
        border-radius: 15px;
    }

    .brand-lockup__logo img {
        padding: 0;
        border-radius: 11px;
    }

    .brand-lockup__title {
        font-size: 1.14rem;
    }

    .brand-lockup__eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.15em;
    }

    .brand-lockup__tag {
        display: none;
    }

    .header-action-strip {
        grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
        gap: 0.28rem;
    }

    .header-action-strip__button {
        min-height: 31px;
        padding: 0.26rem 0.44rem;
        font-size: 0.74rem;
    }

    .hero-card {
        padding: 1.7rem;
    }

    .display-title {
        font-size: clamp(2rem, 4.4vw, 3rem);
        line-height: 1;
    }

    .hero-copy {
        font-size: 0.92rem;
        line-height: 1.56;
    }
}

@media (min-width: 1400px) {
    .app-navbar .navbar-nav {
        margin-top: 0;
        flex-wrap: nowrap;
    }

    .app-navbar__links {
        display: flex;
    }

    .app-navbar__account {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        margin-top: 0;
        margin-left: 0.75rem;
        width: auto;
    }

    .app-account-card {
        max-width: 220px;
    }

    .header-action-strip {
        display: none;
    }

    .app-account-card strong,
    .app-account-card small {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (min-width: 1400px) {
    .app-navbar .navbar-collapse {
        justify-content: flex-end;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .brand-lockup {
        max-width: 320px;
        margin-right: 0.35rem;
    }

    .brand-lockup__eyebrow,
    .brand-lockup__tag {
        display: none;
    }

    .brand-lockup__title {
        font-size: 1.55rem;
    }

    .navbar-collapse {
        min-width: 0;
    }

    .navbar-nav {
        flex-wrap: nowrap;
        min-width: 0;
    }

    .navbar-nav .nav-item {
        min-width: 0;
    }

    .nav-pill {
        padding: 0.68rem 0.8rem !important;
        font-size: 0.94rem;
    }

    .nav-bell {
        gap: 0.35rem;
    }

    .navbar-profile {
        padding: 0.68rem 0.85rem;
    }

    .navbar-profile strong,
    .navbar-profile small {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-cta {
        padding-inline: 0.85rem;
    }
}

@media (max-width: 767px) {
    .page-shell {
        width: min(1240px, calc(100% - 14px));
    }

    .top-contact__inner {
        flex-direction: column;
        gap: 0.45rem;
        align-items: flex-start;
    }

    .brand-lockup__logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        padding: 3px;
        border-radius: 14px;
    }

    .brand-lockup__title {
        font-size: 1.06rem;
    }

    .brand-lockup__eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .header-action-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.26rem;
        padding-bottom: 0.16rem;
    }

    .header-action-strip__button {
        min-height: 32px;
        padding: 0.32rem 0.36rem;
        font-size: 0.74rem;
    }

    .mobile-shortcuts__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-shortcuts__footer {
        grid-template-columns: 1fr;
    }

    .mobile-shortcuts__account {
        padding: 0.68rem 0.78rem;
        border-radius: 16px;
    }

    .mobile-shortcut-btn,
    .mobile-shortcut-btn--logout {
        width: 100%;
    }

    .hero-card,
    .section-card,
    .soft-card,
    .dashboard-card,
    .timeline-card,
    .stat-card,
    .slot-card,
    .app-footer .container {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .page-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .header-actions,
    .actions-inline {
        width: 100%;
        gap: 0.6rem;
    }

    .header-actions .btn,
    .header-actions .inline-form,
    .header-actions .inline-form .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.02;
    }

    .display-title {
        font-size: 1.95rem;
        line-height: 1.03;
    }

    .lead-copy {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .mini-info__row,
    .metric-line,
    .customer-booking-card__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .table-shell {
        border-radius: 20px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .wa-fab span {
        display: none;
    }

    .vehicle-price-card .stat-card__label {
        min-height: 0;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        line-height: 1.25;
    }

    .booking-price-guide .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    .booking-price-guide .stat-card,
    .booking-price-guide .vehicle-price-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .vehicle-price-card .stat-card__value {
        font-size: clamp(1.55rem, 8vw, 2.05rem);
        margin-top: 0.2rem;
    }

    .vehicle-price-card .stat-card__meta {
        font-size: 0.86rem;
        line-height: 1.35;
    }

    .booking-addon {
        align-items: flex-start;
    }

    .booking-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-selected-slot__title {
        font-size: 1.7rem;
    }

    .model-search-chip {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-price-guide {
        padding: 0.9rem;
    }

    .booking-cart-card__row {
        flex-direction: column;
        gap: 0.35rem;
    }
}

@media (max-width: 479px) {
    .header-action-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.24rem;
        padding-bottom: 0.14rem;
    }

    .header-action-strip__button {
        min-height: 31px;
        padding-inline: 0.34rem;
        font-size: 0.72rem;
        gap: 0.22rem;
    }

    .header-action-strip__button i {
        font-size: 0.72rem;
    }

    .header-action-strip__identity {
        padding: 0.22rem 0.1rem 0;
    }

    .mobile-shortcuts__nav {
        grid-template-columns: 1fr;
    }

    .header-shortcuts-band {
        padding-top: 0.15rem;
    }

    .mobile-shortcut-btn {
        min-height: 44px;
        padding: 0.72rem 0.8rem;
        font-size: 0.94rem;
    }

    .mobile-shortcuts__avatar {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    .mobile-shortcuts__profile strong {
        font-size: 0.88rem;
    }

    .mobile-shortcuts__profile small {
        font-size: 0.7rem;
    }

    .customer-booking-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .customer-booking-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 1.48rem;
    }

    .display-title {
        font-size: 2.05rem;
    }
}

@media (min-width: 1400px) {
    .mobile-shortcuts {
        display: none;
    }
}

.btn-primary {
    --bs-btn-bg: var(--brand-base);
    --bs-btn-border-color: var(--brand-base);
    --bs-btn-hover-bg: #0f4675;
    --bs-btn-hover-border-color: #0f4675;
    --bs-btn-active-bg: #0c3b61;
    --bs-btn-active-border-color: #0c3b61;
    --bs-btn-focus-shadow-rgb: 20, 84, 139;
}

.btn-outline-primary {
    --bs-btn-color: var(--brand-base);
    --bs-btn-border-color: rgba(20, 84, 139, 0.28);
    --bs-btn-hover-bg: var(--brand-base);
    --bs-btn-hover-border-color: var(--brand-base);
    --bs-btn-active-bg: #0c3b61;
    --bs-btn-active-border-color: #0c3b61;
}

.btn-outline-secondary {
    --bs-btn-color: var(--ink);
    --bs-btn-border-color: rgba(12, 39, 65, 0.15);
    --bs-btn-hover-bg: rgba(12, 39, 65, 0.08);
    --bs-btn-hover-color: var(--ink);
    --bs-btn-hover-border-color: rgba(12, 39, 65, 0.18);
    --bs-btn-active-bg: rgba(12, 39, 65, 0.12);
    --bs-btn-active-color: var(--ink);
    --bs-btn-active-border-color: rgba(12, 39, 65, 0.2);
}

.btn-success {
    --bs-btn-bg: #14835f;
    --bs-btn-border-color: #14835f;
    --bs-btn-hover-bg: #10684b;
    --bs-btn-hover-border-color: #10684b;
}

.btn-outline-danger {
    --bs-btn-color: var(--danger);
    --bs-btn-border-color: rgba(176, 58, 47, 0.26);
    --bs-btn-hover-bg: var(--danger);
    --bs-btn-hover-border-color: var(--danger);
}
