html, body {
    height: 100%;
    background: var(--ui-bg);
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#main {
    flex: 1 0 auto;
    background: #ffffff;
}

#footer {
    margin-top: auto;
}

:root {
    --ui-primary: #ff385c;
    --ui-primary-strong: #e31c5f;
    --ui-primary-soft: #ffe8ee;
    --ui-primary-ghost: #fff3f6;
    --ui-bg: #ffffff;
    --ui-surface: #ffffff;
    --ui-surface-soft: #f8f9fb;
    --ui-surface-muted: #f4f6f8;
    --ui-text: #1f1f22;
    --ui-text-soft: #6f7282;
    --ui-border: #e9edf2;
    --ui-border-strong: #dfe5ec;
    --ui-success: #0d9b6d;
    --ui-warning: #b7791f;
    --ui-danger: #b83258;
    --ui-radius-sm: 12px;
    --ui-radius: 18px;
    --ui-radius-lg: 22px;
    --ui-shadow-sm: 0 8px 20px rgba(31, 24, 33, 0.06);
    --ui-shadow: 0 14px 36px rgba(41, 27, 35, 0.08);
    --ui-focus: 0 0 0 .2rem rgba(255, 56, 92, .2);
}

body,
button,
input,
select,
textarea {
    font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ui-text);
}

body {
    font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    line-height: 1.45;
}

:focus-visible {
    outline: none;
    box-shadow: var(--ui-focus);
}

a {
    color: var(--ui-primary-strong);
}

a:hover {
    color: #c81650;
}

.main {
    padding-top: 88px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pagetitle {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .9rem 1.1rem;
}

.pagetitle + .row,
.pagetitle + .card,
.pagetitle + .calendar-shell,
.pagetitle + .ui-toolbar {
    margin-top: .45rem;
}

.pagetitle h1 {
    margin: 0;
    font-size: clamp(1.35rem, 1.05rem + 1vw, 1.95rem);
    letter-spacing: -0.015em;
    color: #151515;
    font-weight: 800;
}

.pagetitle p {
    margin: .35rem 0 0;
    max-width: 62ch;
}

.pagetitle p,
.pagetitle .breadcrumb,
.text-muted {
    color: var(--ui-text-soft) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #c0c7d2;
}

.card,
.modal-content,
.alert,
.table-responsive,
.dropdown-menu {
    border-radius: var(--ui-radius);
    border: 1px solid var(--ui-border);
    background: var(--ui-surface);
}

.card,
.modal-content,
.dropdown-menu {
    box-shadow: var(--ui-shadow-sm);
}

.card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    box-shadow: var(--ui-shadow);
    transform: translateY(-1px);
}

.card .card-body {
    padding: 1.4rem 1.4rem 1.45rem;
}

.table-responsive {
    margin-top: .4rem;
}

.row.g-3 {
    --bs-gutter-y: 1.15rem;
}

.row.g-4 {
    --bs-gutter-y: 1.35rem;
}

.card .card-title,
h5,
h6 {
    font-weight: 760;
    letter-spacing: -0.01em;
    color: #1f1f22;
}

h4 {
    font-weight: 760;
    letter-spacing: -0.01em;
}

.form-label {
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    color: #667085;
    margin-bottom: .45rem;
}

.form-control,
.form-select,
.input-group-text,
.btn {
    border-radius: 14px;
}

.form-control,
.form-select,
.input-group-text {
    min-height: 48px;
    border-color: var(--ui-border-strong);
    background: #fff;
}

textarea.form-control {
    min-height: 104px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ui-primary);
    box-shadow: var(--ui-focus);
}

.form-check-input {
    border-color: #d8c2ca;
}

.form-check-input:checked {
    background-color: var(--ui-primary);
    border-color: var(--ui-primary);
}

.btn {
    min-height: 44px;
    padding: .6rem 1.1rem;
    font-weight: 700;
    border-width: 1px;
}

.btn-sm {
    min-height: 36px;
    padding: .4rem .8rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ui-primary) 0%, var(--ui-primary-strong) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 56, 92, .25);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #ff4e70 0%, #d71052 100%) !important;
    color: #fff;
}

.btn-success,
.btn-warning,
.btn-info,
.btn-secondary,
.btn-dark,
.btn-outline-success,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-dark,
.btn-outline-secondary {
    background: #fff;
    color: #344054;
    border-color: var(--ui-border-strong);
    box-shadow: none;
}

.btn-success:hover,
.btn-warning:hover,
.btn-info:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-outline-success:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-dark:hover,
.btn-outline-secondary:hover {
    background: #f8fafc;
    border-color: #cfd8e3;
    color: #1f2937;
}

.bg-primary,
.bg-info,
.bg-secondary,
.bg-dark,
.bg-success,
.bg-warning {
    background-color: #fff1f5 !important;
    color: #b4234d !important;
}

.text-primary,
.text-info,
.text-warning,
.text-success {
    color: #b4234d !important;
}

.bg-primary-subtle,
.bg-info-subtle,
.bg-success-subtle,
.bg-warning-subtle,
.bg-secondary-subtle,
.bg-dark-subtle {
    background: #fff4f7 !important;
    color: #b4234d !important;
}

.btn-outline-primary,
.btn-light,
.btn-outline-secondary {
    border-color: var(--ui-border-strong);
    color: #5c4952;
    background: #fff;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-light:hover {
    border-color: var(--ui-primary);
    color: var(--ui-primary-strong);
    background: #fff8fa;
}

.btn-danger,
.btn-outline-danger {
    border-radius: 14px;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: #fafbfc;
    --bs-table-hover-bg: #f5f7fa;
}

.table > :not(caption) > * > * {
    padding-top: .9rem;
    padding-bottom: .9rem;
    border-bottom-color: #edf1f5;
    vertical-align: middle;
}

.table thead th {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6b7280;
    border-bottom-width: 1px;
    font-weight: 700;
}

.table tbody tr + tr td {
    border-top-color: #f0f3f7;
}

.ui-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .74rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .74rem;
    border: 1px solid transparent;
}

.ui-badge-success { background: #e8faf3; color: #0a7d58; border-color: #c8ecd9; }
.ui-badge-warning { background: #fff6df; color: var(--ui-warning); border-color: #f5dfad; }
.ui-badge-info { background: #ffeef2; color: #be2b4d; border-color: #f7ced8; }
.ui-badge-primary { background: #ffe6ed; color: #c81d4f; border-color: #f6c9d8; }
.ui-badge-neutral { background: #f4f5f7; color: #606672; border-color: #e4e7ec; }
.ui-badge-danger { background: #ffe8ef; color: var(--ui-danger); border-color: #f5c5d3; }

.badge.bg-primary-subtle { background: #ffe9ef !important; color: #bf1f4b !important; }

.alert {
    padding: .9rem 1rem;
    border: 1px solid var(--ui-border);
    background: #fff;
}

.alert-danger { border-color: #f4c5d4; background: #fff3f8; color: #9d1b49; }
.alert-warning { border-color: #f6e1b3; background: #fff8e9; color: #80510b; }
.alert-info { border-color: #f4cfda; background: #fff1f5; color: #ae2850; }
.alert-success { border-color: #bde9d7; background: #ecfaf4; color: #0f7655; }

.ui-empty-state {
    padding: 2.1rem 1.25rem;
    border: 1px dashed #f0cad5;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #fff5f8 100%);
    text-align: center;
}

.ui-empty-state-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto .75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffeef3;
    color: var(--ui-primary-strong);
    font-size: 1.35rem;
}

.ui-empty-state-title { font-size: 1.02rem; font-weight: 700; color: #1f1f22; }
.ui-empty-state-description { margin-top: .35rem; color: var(--ui-text-soft); }
.ui-empty-state-actions { margin-top: 1rem; }

.ui-entry-shell {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-entry-shell .ui-empty-state {
    width: min(640px, 100%);
}

.ui-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(46, 25, 34, .18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.ui-loading-card {
    min-width: 260px;
    padding: 1.2rem 1.3rem;
    background: #fff;
    border: 1px solid var(--ui-border);
    box-shadow: var(--ui-shadow);
    border-radius: 20px;
    text-align: center;
}

.ui-loading-spinner {
    color: var(--ui-primary);
}

.ui-toast-stack {
    position: fixed;
    top: 86px;
    right: 20px;
    z-index: 1900;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.ui-toast {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .9rem 1rem;
    background: #fff;
    border: 1px solid var(--ui-border);
    box-shadow: var(--ui-shadow-sm);
    border-radius: 16px;
    max-width: min(370px, calc(100vw - 36px));
}

.ui-toast-icon { background: #ffe8ef; color: #c72150; }

.app-header-shell {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e8edf3;
    box-shadow: 0 12px 26px rgba(48, 25, 34, 0.08);
}

.app-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.05rem;
    background: linear-gradient(140deg, var(--ui-primary) 0%, var(--ui-primary-strong) 100%);
    box-shadow: 0 8px 16px rgba(255, 56, 92, .35);
}

.app-brand-title { color: #1d1a1d; font-weight: 800; font-size: 1rem; }
.app-brand-subtitle { color: #806a74; font-size: .75rem; }

.app-property-switcher { min-width: 250px; justify-content: space-between; }

.app-sidebar {
    background: #fff;
    border-right: 1px solid #e8edf3;
    padding: .35rem .6rem 1rem;
}

.app-sidebar .sidebar-nav {
    padding-top: .35rem;
    gap: .15rem;
}

.app-sidebar .sidebar-nav .nav-link,
.app-sidebar .sidebar-nav .nav-content a,
.app-sidebar .sidebar-nav .nav-link.collapsed {
    background: transparent;
    color: #374151;
}

.app-sidebar .sidebar-nav .nav-link:not(.collapsed) {
    color: #b61848;
}

.app-sidebar .sidebar-nav .nav-link i,
.app-sidebar .sidebar-nav .nav-content a i {
    color: #9aa4b2;
    background: transparent !important;
}

.app-sidebar .sidebar-nav .nav-link.collapsed i {
    color: #98a2b3;
}

.app-sidebar-property {
    border: 1px solid var(--ui-border);
    background: var(--ui-surface-soft);
    border-radius: 16px;
    padding: .85rem 1rem;
}

.sidebar-section-label {
    list-style: none;
    padding: .55rem .95rem .35rem;
    margin-top: 1rem;
    color: #94a3b8;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 700;
}

.app-sidebar .nav-link,
.app-sidebar .sidebar-sub-link {
    border-radius: 12px;
    color: #374151;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-height: 44px;
    padding: .7rem .9rem;
    line-height: 1.3;
}

.app-sidebar .nav-link:hover,
.app-sidebar .sidebar-sub-link:hover {
    background: #f8fafc;
    color: #b6204a;
}

.app-sidebar .sidebar-nav .nav-content a:hover,
.app-sidebar .sidebar-nav .nav-content a.active {
    background: #fff4f7;
    color: #b6204a;
}

.app-sidebar .nav-link:hover i,
.app-sidebar .sidebar-sub-link:hover i,
.app-sidebar .sidebar-nav .nav-content a:hover i {
    color: #b6204a;
}

.app-sidebar .sidebar-sub-link.active,
.app-sidebar .nav-link.active {
    background: #fff1f5;
    color: #b61848;
    font-weight: 700;
}

.app-sidebar .sidebar-sub-link.active i,
.app-sidebar .nav-link.active i { color: var(--ui-primary-strong); }

.app-sidebar .sidebar-group-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem .9rem;
}

.app-sidebar .sidebar-group-toggle:not(.collapsed) {
    background: #fff6f8;
    color: #b61848;
}

.app-sidebar .sidebar-group-toggle:not(.collapsed) i {
    color: #b61848;
}

.app-sidebar .sidebar-nav .nav-content {
    padding: .3rem 0 .55rem 0;
}

.app-sidebar .sidebar-nav .nav-content a {
    border-radius: 12px;
    margin: 0 .15rem;
    padding: .7rem .85rem .7rem 1rem;
}

.app-sidebar .sidebar-nav .nav-item {
    margin-bottom: .45rem;
}

.app-sidebar .sidebar-nav .nav-content a.active i,
.app-sidebar .sidebar-nav .nav-content a:hover i {
    background-color: transparent !important;
}

.channel-sync-toggle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .85rem;
}

.channel-sync-toggle-card {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    border: 1px solid var(--ui-border);
    border-radius: 16px;
    padding: .95rem 1rem;
    background: #fff;
    min-height: 100%;
}

.channel-sync-toggle-card .form-check-input {
    margin-top: .15rem;
}

.channel-sync-toggle-card-disabled {
    opacity: .72;
    background: #fafbfc;
}

.kpi-card::after { background: rgba(255, 56, 92, .08); }
.kpi-label { color: #8c7480; font-size: .75rem; }
.kpi-value { font-size: 1.86rem; font-weight: 800; }
.kpi-help { color: var(--ui-text-soft); font-size: .86rem; }

.mini-chart-fill,
.report-bar-fill {
    background: linear-gradient(90deg, #ff6b88, #ff385c);
}

.agenda-booking-card,
.summary-pill,
.detail-metric {
    border: 1px solid var(--ui-border);
    border-radius: 16px;
    background: #fff;
}

.summary-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: .95rem;
}

.summary-pill,
.detail-metric {
    padding: 1rem 1.05rem;
    min-height: 100%;
}

.summary-pill .label,
.detail-metric .label {
    color: #7a8596;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    margin-bottom: .35rem;
}

.summary-pill .value,
.detail-metric .value {
    color: #1f1f22;
    font-size: 1.08rem;
    font-weight: 780;
    line-height: 1.25;
}

.table-actions {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}

.calendar-shell .card-body { padding: 1rem; }

.calendar-timeline-modern {
    --calendar-day-width: 64px;
    border: 1px solid var(--ui-border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.calendar-timeline-modern .resources {
    background: #fff;
    color: #374151;
    border-right: 1px solid var(--ui-border);
    overflow: auto;
}

.calendar-timeline-modern .grid {
    overflow: auto;
    background: #fff;
}

.calendar-timeline-modern .resources-header {
    background: #fff !important;
    color: #1f2937;
    border-bottom: 1px solid var(--ui-border);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 7;
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-weight: 760;
}

.calendar-timeline-modern {
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr;
    min-height: 520px;
}

.calendar-timeline-modern .resource-row {
    min-height: 74px;
    padding: .9rem 1rem;
    border-bottom: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-timeline-modern .resource-name {
    color: #111827;
    font-weight: 700;
}

.calendar-timeline-modern .resource-meta {
    color: #6b7280;
    font-size: .81rem;
}

.calendar-timeline-modern .grid-header,
.calendar-timeline-modern .grid-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(var(--calendar-day-width), var(--calendar-day-width));
}

.calendar-timeline-modern .grid-header {
    position: sticky;
    top: 0;
    z-index: 6;
    background: #fff;
}

.calendar-timeline-modern .grid-header .day-cell {
    min-height: 68px;
    border-right: 1px solid #f0f3f7;
    border-bottom: 1px solid var(--ui-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .15rem;
}

.calendar-timeline-modern .grid-header .day-cell .dow {
    font-size: .73rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #6b7280;
}

.calendar-timeline-modern .grid-header .day-cell .dom {
    color: #111827;
    font-weight: 750;
}

.calendar-timeline-modern .grid-row {
    position: relative;
    min-height: 74px;
    border-bottom: 1px solid #eef2f6;
    overflow: hidden;
}

.calendar-timeline-modern .grid-row .cell {
    border-right: 1px solid #f4f7fa;
    transition: background-color .18s ease;
}

.calendar-timeline-modern .grid-row:hover .cell {
    background: #fafcff;
}

.calendar-timeline-modern .grid-header .day-cell.today,
.calendar-timeline-modern .grid-row .cell.today {
    background: #fff5f8;
}

.calendar-timeline-modern .range-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 .75rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(51, 33, 41, .14);
    border: 1px solid transparent;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
}

.calendar-timeline-modern .range-bar .range-title {
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar-timeline-modern .range-bar:hover {
    filter: brightness(.98);
}

.calendar-toolbar {
    margin-bottom: 1.2rem;
}

.calendar-filters {
    background: #fff;
    border: 1px solid var(--ui-border);
    border-radius: 18px;
    padding: 1rem 1.05rem;
    margin-bottom: 1rem;
}

.calendar-shell > .card {
    margin-top: .25rem;
}

.d-flex.gap-2,
.d-flex.gap-2.flex-wrap {
    row-gap: .6rem;
}

.ui-toolbar,
.calendar-toolbar {
    margin-bottom: 1.25rem;
}

.card + .card,
.table-responsive + .table-responsive {
    margin-top: .85rem;
}

.calendar-timeline-modern .range-bar.booking-confirmed { background: #ff5575; color: #fff; border-color: #e43a60; }
.calendar-timeline-modern .range-bar.booking-tentative { background: #fff3d6; color: #815609; border-color: #f1ddaa; }
.calendar-timeline-modern .range-bar.booking-cancelled { background: #f8e5ec; color: #8e3451; border-color: #efc4d4; }
.calendar-timeline-modern .range-bar.booking-checkedin { background: #ffe4ed; color: #a91c4a; border-color: #f5c6d6; }
.calendar-timeline-modern .range-bar.booking-checkedout { background: #f1f0f3; color: #635c66; border-color: #e3dfe6; }
.calendar-timeline-modern .range-bar.booking-inquiry { background: #f5edff; color: #5b2b9e; border-color: #e1cffd; }
.calendar-timeline-modern .range-bar.blocked-bar { background: #eef2f7; color: #3f4b5c; border-color: #dae1ea; }
.calendar-timeline-modern .range-bar.external-booking-bar { background: #eaf5ff; color: #0f4a8a; border-color: #cde3fb; }
.calendar-timeline-modern .range-bar.external-airbnb-bar { background: #ffeef3; color: #ad1f4a; border-color: #f4cfdb; }
.calendar-timeline-modern .range-bar.external-other-bar { background: #f4f6f8; color: #475467; border-color: #e3e8ef; }

.legend-dot.legend-confirmed { background: #ff4f71; }
.legend-dot.legend-tentative { background: #d7a235; }
.legend-dot.legend-checkedin { background: #e12f60; }
.legend-dot.legend-checkedout { background: #8f8794; }

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.calendar-legend .legend-item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .7rem;
    border: 1px solid var(--ui-border);
    border-radius: 999px;
    background: #fff;
    color: #475467;
    font-size: .82rem;
}

.calendar-legend .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.login-shell,
.section.register {
    background: #ffffff;
}

.register .logo span {
    font-weight: 800;
    color: #1f1f22;
}

.register .card {
    border-radius: 24px;
    box-shadow: var(--ui-shadow);
}

.register .credits { color: #667085; }

.modal-content {
    border-radius: 20px;
}

.dropdown-item:active,
.dropdown-item.active {
    background: #ffeff4;
    color: #b51d4b;
}

.app-footer {
    border-top: 1px solid #e8edf3;
    color: #667085;
    background: #fff;
}

@media (max-width: 991.98px) {
    .main {
        padding-top: 80px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .app-property-switcher { min-width: 0; }

    .calendar-timeline-modern {
        --calendar-day-width: 58px;
        grid-template-columns: 186px 1fr;
    }
}

@media (max-width: 767.98px) {
    .ui-toast-stack {
        right: 12px;
        left: 12px;
    }

    .detail-section-grid,
    .summary-pill-grid,
    .audit-filter-grid,
    .mini-chart-item,
    .report-bar-item {
        grid-template-columns: 1fr;
    }

    .kpi-value {
        font-size: 1.5rem;
    }

    .pagetitle {
        margin-bottom: 1.2rem;
    }

    .card .card-body {
        padding: 1.15rem 1rem 1.2rem;
    }
}


.plan-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.plan-option-card {
    width: 100%;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
    padding: 1rem;
    text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.plan-option-card:hover {
    border-color: #f2b7c7;
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
    transform: translateY(-1px);
}

.plan-option-card.selected {
    border-color: #d63384;
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.12);
}

.summary-pill-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1rem;
}

.plan-feature-list span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.plan-feature-list .enabled {
    color: #157347;
}

.plan-feature-list .disabled {
    color: #b02a37;
}

.account-save-button {
    width: 100%;
}

@media (min-width: 992px) {
    .account-save-button {
        width: auto;
    }
}
