/* ------------------------------------------------------------------ *
 * Golden Rose – Apartment Manager
 * Layout is written with CSS logical properties so the same rules work
 * for both the LTR (English) and RTL (Arabic) directions.
 * ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ *
 * Typography — IBM Plex Sans (Latin) + IBM Plex Sans Arabic (Arabic)
 *
 * Declared here rather than pulled in as extra <link> stylesheets so the
 * page does not gain five render-blocking CSS requests. The files come from
 * jsDelivr, which the CSP already trusts for Bootstrap (font-src), so this
 * needs no security-header change and adds no new third party.
 *
 * `unicode-range` is what makes the pairing work: the browser downloads a
 * file only when the page actually contains characters from its range, and
 * picks the family per character rather than per element. A line that mixes
 * an Arabic label with a Latin chalet name therefore gets Plex Sans Arabic
 * for the Arabic and Plex Sans for the Latin, with no markup involved.
 *
 * The Latin face is variable (one 45 KB file covers weights 100-700); the
 * Arabic family ships one file per weight, so only the four weights the UI
 * actually uses are declared.
 * ------------------------------------------------------------------ */

@font-face {
  font-family: "IBM Plex Sans Variable";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource-variable/ibm-plex-sans@5/files/ibm-plex-sans-latin-wght-normal.woff2")
    format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans-arabic@5/files/ibm-plex-sans-arabic-arabic-400-normal.woff2")
    format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891,
    U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41,
    U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans-arabic@5/files/ibm-plex-sans-arabic-arabic-500-normal.woff2")
    format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891,
    U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41,
    U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans-arabic@5/files/ibm-plex-sans-arabic-arabic-600-normal.woff2")
    format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891,
    U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41,
    U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans-arabic@5/files/ibm-plex-sans-arabic-arabic-700-normal.woff2")
    format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891,
    U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41,
    U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

/* Brand palette — antique gold, after the name "Golden Rose". Change these
 * values to re-skin the whole app; nothing else hardcodes the brand colour.
 *
 * Gold is a light hue, and the obvious choices fail on contrast: CSS
 * `darkgoldenrod` reaches only 3.25:1 against white and a mid gold 4.17:1,
 * both under the 4.5:1 WCAG AA needs for body text and button labels. The
 * tones below are deep antique golds chosen to clear AA in both modes — the
 * gold reads as gold in the ornament (borders, tints, dark-mode accents)
 * while the text-bearing values stay dark enough to be legible. */
:root {
  /* One stack for both directions. Because the two Plex families declare
   * disjoint unicode ranges, the browser resolves each character to the
   * right one on its own — there is no need for a separate RTL stack, and
   * having one would break mixed-script lines. */
  --font-sans: "IBM Plex Sans Variable", "IBM Plex Sans", "IBM Plex Sans Arabic",
    system-ui, -apple-system, "Segoe UI", "Noto Sans Arabic", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Accent used for links, active states and icons. Brightens in dark mode
   * so it keeps contrast against a dark surface. */
  --brand: #7a5c17;
  --brand-tint: rgba(122, 92, 23, 0.10);

  /* Solid fills (buttons). Kept deep in both modes with light text on top. */
  --brand-btn: #8a6d1f;
  --brand-btn-hover: #6b4f14;
  --brand-btn-fg: #ffffff;

  /* The sidebar stays dark in both modes — it is a constant anchor. */
  --sidebar-from: #7a5c17;
  --sidebar-to: #4a3609;

  /* Surfaces */
  --surface: #ffffff;
  --page-bg: #f4f6f8;

  --sidebar-width: 260px;
}

/* Bootstrap 5.3 drives colour modes from data-bs-theme on <html>; our own
 * tokens hang off the same switch so custom components follow along. */
[data-bs-theme="dark"] {
  --brand: #e3b341;
  --brand-tint: rgba(227, 179, 65, 0.16);

  /* The fill stays deep even in dark mode: a bright gold button with white
   * text would fail contrast, and with dark text it would glare. */
  --brand-btn: #8a6d1f;
  --brand-btn-hover: #a1741e;
  --brand-btn-fg: #ffffff;

  --sidebar-from: #2e2410;
  --sidebar-to: #1d1608;

  --surface: #1b2027;
  --page-bg: #10141a;
}

body {
  font-family: var(--font-sans);
  background-color: var(--page-bg);
}

/* Bootstrap sets its own stack on form controls, tables and buttons, which
 * would otherwise opt them out of Plex and leave the UI mixing two faces. */
input,
select,
textarea,
button,
.form-control,
.form-select,
.btn,
.table,
.navbar,
.dropdown-menu {
  font-family: inherit;
}

.bg-brand {
  background: linear-gradient(180deg, var(--sidebar-from) 0%, var(--sidebar-to) 100%);
}

.btn-brand {
  background-color: var(--brand-btn);
  border-color: var(--brand-btn);
  color: var(--brand-btn-fg);
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--brand-btn-hover);
  border-color: var(--brand-btn-hover);
  color: var(--brand-btn-fg);
}

.btn-brand:focus-visible {
  box-shadow: 0 0 0 0.25rem var(--brand-tint);
}

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

/* Surface helper replacing Bootstrap's fixed .bg-white on card headers,
 * which would stay white in dark mode. */
.bg-surface { background-color: var(--surface) !important; }

/* ------------------------------------------------------------------ *
 * Sidebar + content shell
 * ------------------------------------------------------------------ */

@media (min-width: 992px) {
  .sidebar {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    width: var(--sidebar-width);
    z-index: 1030;
    display: flex;
    flex-direction: column;
  }

  .app-shell .content-area {
    margin-inline-start: var(--sidebar-width);
  }
}

.sidebar .offcanvas-body {
  display: flex;
}

.sidebar-brand {
  border-block-end: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.sidebar .nav-link i {
  font-size: 1.05rem;
  width: 1.25rem;
  text-align: center;
  flex: 0 0 auto;
}

.sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.sidebar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
}

.sidebar-footer { margin-block-start: auto; }

/* ------------------------------------------------------------------ *
 * Page footer bar — account · language · appearance
 *
 * Fixed to the bottom of the viewport, offset by the sidebar on lg+.
 * Every control is exactly --utility-size tall and vertically centred,
 * so the row reads as one aligned unit rather than three loose buttons.
 * ------------------------------------------------------------------ */

.app-footer {
  --utility-size: 2.25rem;
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 1035;
  background-color: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  border-block-start: 1px solid var(--bs-border-color);
}

@supports not (background-color: color-mix(in srgb, red 50%, transparent)) {
  .app-footer { background-color: var(--surface); }
}

@media (min-width: 992px) {
  .app-footer { inset-inline-start: var(--sidebar-width); }
}

.app-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding-inline: 1rem;
  padding-block: 0.5rem;
}

.app-footer-brand {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Give the page room so the fixed bar never covers the last row. */
.app-shell .content-area { padding-block-end: 4.5rem; }

/* --- the control group ------------------------------------------- */

.utility-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 999px;
  background-color: var(--bs-body-bg);
}

.utility-divider {
  width: 1px;
  height: 1.25rem;
  background-color: var(--bs-border-color);
  flex: 0 0 auto;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: var(--utility-size);
  padding-inline: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--bs-body-color);
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.utility-item:hover,
.utility-item:focus-visible {
  background-color: var(--brand-tint);
  color: var(--brand);
}

.utility-item:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

/* Square icon buttons: identical footprint, icon optically centred. */
.utility-square {
  width: var(--utility-size);
  padding-inline: 0;
  flex: 0 0 auto;
  font-size: 1rem;
}

.utility-lang {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* --- account chip -------------------------------------------------- */

.utility-account { padding-inline-end: 0.6rem; }

.utility-avatar {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-btn);
  color: var(--brand-btn-fg);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}

.utility-account-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  text-align: start;
}

.utility-account-name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.1;
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.utility-account-role {
  font-size: 0.6875rem;
  line-height: 1;
  color: var(--bs-secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.utility-caret {
  font-size: 0.7rem;
  color: var(--bs-secondary-color);
  transition: transform 0.15s ease;
}

.utility-account[aria-expanded="true"] .utility-caret { transform: rotate(180deg); }

/* On narrow screens keep only the avatar so the row never wraps. */
@media (max-width: 575.98px) {
  .utility-account-text,
  .utility-caret { display: none; }
  .utility-account { width: var(--utility-size); padding-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .utility-item,
  .utility-caret { transition: none; }
}

/* One icon at a time — CSS decides which, so the switch is correct on the
 * very first paint even before theme.js runs. */
.theme-icon-dark,
.theme-icon-light { display: none; }

[data-bs-theme="light"] .theme-icon-dark { display: inline-block; }
[data-bs-theme="dark"] .theme-icon-light { display: inline-block; }

/* The account dropdown opens upward out of the sidebar footer. */
.sidebar-footer .dropdown-menu { min-width: 0; }

/* Keyboard skip link — visible only while focused. */
.skip-link {
  position: absolute;
  inset-inline-start: 0.5rem;
  inset-block-start: -3rem;
  z-index: 2000;
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--brand-btn);
  color: var(--brand-btn-fg);
  text-decoration: none;
  transition: inset-block-start 0.15s ease;
}

.skip-link:focus {
  inset-block-start: 0.5rem;
  color: var(--brand-btn-fg);
}

#mainContent:focus { outline: none; }

/* Keep the offcanvas panel readable while it is a real offcanvas (< lg). */
@media (max-width: 991.98px) {
  .offcanvas-lg.sidebar { max-width: 82vw; }
}

/* ------------------------------------------------------------------ *
 * Login
 * ------------------------------------------------------------------ */

.auth-shell {
  background: linear-gradient(135deg, var(--sidebar-from) 0%, var(--sidebar-to) 100%);
  min-height: 100vh;
}

.login-wrap {
  min-height: 100vh;
  padding: 1.5rem;
}

/* Error pages seen by an anonymous visitor: no sidebar, and not the login
 * gradient either — just the ordinary page surface. */
.error-shell {
  min-height: 100vh;
}

.login-card {
  width: 100%;
  max-width: 26rem;
  border-radius: 1rem;
}

.login-logo {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: var(--brand-btn);
  color: var(--brand-btn-fg);
  font-size: 1.75rem;
}

/* ------------------------------------------------------------------ *
 * Cards, stats, tables
 * ------------------------------------------------------------------ */

.stat-card { border-radius: 0.85rem; }

.stat-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.stat-card-link:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12) !important;
}

.stat-card-arrow { opacity: 0; transition: opacity 0.12s ease; }
.stat-card-link:hover .stat-card-arrow { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .stat-card-link { transition: none; }
  .stat-card-link:hover { transform: none; }
}

.stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex: 0 0 auto;
}

.min-w-0 { min-width: 0; }

/* Gregorian + Hijri, stacked. Costs a table cell a line instead of ~16
 * characters of width, which is the cheaper of the two in every layout here. */
.date-pair {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.3;
}

.date-hijri {
  font-size: 0.8em;
  color: var(--bs-secondary-color);
  white-space: nowrap;
}

.cursor-pointer { cursor: pointer; }

.apt-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-block;
}

/* Small user monogram in the audit table. */
.audit-avatar {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}

.sort-link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.sort-link:hover { color: var(--brand); }
.sort-link.active { color: var(--brand); font-weight: 600; }

.table > :not(caption) > * > * { vertical-align: middle; }

/* Columns of figures — money totals, invoice numbers.
 *
 * `text-align: right` is deliberate rather than Bootstrap's logical
 * `.text-end`. The two differ in Arabic, and only the physical one lines the
 * digits up:
 *
 *   Arabic renders an amount as "ر.س 9,000.00" — symbol left, digits right.
 *   `.text-end` resolves to `left` in RTL, so it flushes the *symbol* and
 *   leaves the digits ragged: 10,500.00 overhangs 9,000.00 and no decimal
 *   point lines up with the one above it.
 *
 *   Physical `right` flushes the digits in both directions — "SAR 9,000.00"
 *   in English and "ر.س 9,000.00" in Arabic both end at the same edge — so
 *   the decimals align, which is the whole point of a figures column. It also
 *   matches the start edge of every other column on an RTL page, so the header
 *   sits over its own values.
 *
 * `tabular-nums` gives every digit one advance width, so the columns stay
 * lined up between rows instead of drifting on a 1 versus a 0.
 */
.num-col {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.page-header h1 { color: var(--brand); }

/* ------------------------------------------------------------------ *
 * Flash messages
 * ------------------------------------------------------------------ */

.flash-stack {
  position: sticky;
  top: 0.5rem;
  z-index: 1050;
}

.flash-stack .alert { box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08); }

.auth-shell .flash-stack {
  position: fixed;
  inset-block-start: 1rem;
  inset-inline: 1rem;
  max-width: 26rem;
  margin-inline: auto;
}

/* ------------------------------------------------------------------ *
 * Guest live-search dropdown
 * ------------------------------------------------------------------ */

.guest-search-wrap { position: relative; }

.guest-results {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  z-index: 1055;
  max-height: 16rem;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
  display: none;
}

.guest-results.show { display: block; }

.guest-results .list-group-item { cursor: pointer; border-inline: 0; }
.guest-results .list-group-item:hover,
.guest-results .list-group-item.active-result {
  background-color: var(--brand-tint);
  color: inherit;
}

/* ------------------------------------------------------------------ *
 * Calendar
 * ------------------------------------------------------------------ */

#calendar,
#miniCalendar {
  background: var(--surface);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

/* FullCalendar draws from its own custom properties, so the dark palette has
 * to be handed to it explicitly. */
[data-bs-theme="dark"] #calendar,
[data-bs-theme="dark"] #miniCalendar {
  --fc-page-bg-color: var(--surface);
  --fc-neutral-bg-color: rgba(255, 255, 255, 0.05);
  --fc-border-color: rgba(255, 255, 255, 0.14);
  --fc-today-bg-color: rgba(227, 179, 65, 0.12);
  --fc-list-event-hover-bg-color: rgba(255, 255, 255, 0.06);
  color: var(--bs-body-color);
}

.fc .fc-toolbar-title { font-size: 1.15rem; }

.fc .fc-button {
  background-color: var(--brand-btn);
  border-color: var(--brand-btn);
  text-transform: capitalize;
}

.fc .fc-button:hover,
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
  background-color: var(--brand-btn-hover);
  border-color: var(--brand-btn-hover);
}

.fc-event { cursor: pointer; border: none; }
.fc-event-title { font-weight: 500; }

.fc .fc-datagrid-cell-cushion { font-weight: 600; }

/* --- Phone input: country picker + local number ---------------------- *
 * The select is sized to its content so the flag and dial code fit without
 * stealing the room the number needs. `dir="ltr"` is set on the group in
 * the macro; these rules keep the corners joined in both directions, which
 * Bootstrap's RTL build would otherwise reverse. */
.phone-group .phone-country {
  flex: 0 0 auto;
  width: auto;
  min-width: 7.5rem;
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}

.phone-group .form-control {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
}

/* Emoji flags render in the system emoji font; Plex has no glyph for them. */
.phone-country {
  font-family: "IBM Plex Sans Variable", "Apple Color Emoji", "Segoe UI Emoji",
    "Noto Color Emoji", sans-serif;
}

/* --- Amenity picker in the apartment edit modal ---------------------- *
 * A responsive grid rather than a long column: 24 amenities stacked one
 * per line would push everything below them out of the modal. */
.amenity-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 0.15rem 1rem;
  padding: 0.75rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  /* The modal body scrolls; this must not become a second scroll area. */
  background-color: var(--bs-body-bg);
}

/* WTForms' ListWidget wraps the options in a <ul>. */
.amenity-picker ul {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-picker li { list-style: none; }

.amenity-option .form-check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.amenity-option .form-check-label .bi {
  color: var(--brand);
  width: 1.1em;
  text-align: center;
}

/* --- Hijri dates in the calendar ------------------------------------ *
 * The Gregorian number stays the primary reading; the Hijri one sits
 * beside it, smaller and dimmer, so a glance still lands on the same
 * figure it always did. Both are on one line so the cell gains no height
 * and the event rows below it do not shift. */
.fc-day-hijri-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  /* The day number is inside a link; inherit rather than restate colour. */
  color: inherit;
}

.fc-day-hijri {
  font-size: 0.78em;
  font-weight: 400;
  opacity: 0.65;
  /* Hijri numerals are Latin digits here, matching the rest of the app;
   * keep them LTR even on the Arabic (RTL) calendar so "16" never renders
   * reversed next to the Gregorian day. */
  direction: ltr;
  unicode-bidi: isolate;
}

/* The Hijri month range appended to the toolbar title. */
.fc .fc-toolbar-title .fc-title-hijri {
  font-size: 0.8em;
  font-weight: 400;
  opacity: 0.7;
  white-space: nowrap;
}

.legend-swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  display: inline-block;
  flex: 0 0 auto;
}

/* ------------------------------------------------------------------ *
 * Print
 * ------------------------------------------------------------------ */

@media print {
  .sidebar,
  .navbar,
  .app-footer,
  .flash-stack,
  .btn,
  .no-print { display: none !important; }

  .app-shell .content-area { margin-inline-start: 0; padding-block-end: 0; }
  body { background: #fff; }
  .card { box-shadow: none !important; border: 1px solid #dee2e6 !important; }
}
