:root {
  --bbh-bg: #f7f3e8;
  --bbh-panel: #d8d4c8;
  --bbh-panel-light: #efecdf;
  --bbh-border-dark: #4b5546;
  --bbh-border-mid: #8c987f;
  --bbh-border-light: #fffdf3;
  --bbh-green: #506d56;
  --bbh-green-dark: #1f3f2f;
  --bbh-green-soft: #9eb29a;
  --bbh-gold: #c8a24c;
  --bbh-bluebar: #0f3f76;
  --bbh-danger: #9b3f35;
  --bbh-text: #1e241d;
  --bbh-muted: #545b50;
  --bbh-input: #fffdf7;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bbh-bg); color: var(--bbh-text); font-family: Arial, Helvetica, sans-serif; font-size: 14px; }
a { color: inherit; }

.bbh-shell { min-height: 100vh; display: grid; grid-template-rows: auto auto 1fr auto; }
.bbh-header { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 12px; background: linear-gradient(90deg, #f7f3e8, #efecdf); border-bottom: 1px solid var(--bbh-border-dark); }
.bbh-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.bbh-brand-logo { width: 44px; height: 44px; display: block; flex: 0 0 44px; }
.bbh-brand-name { font-size: 26px; line-height: 1; font-weight: 700; color: var(--bbh-green-dark); white-space: nowrap; }
.bbh-quickbar { display: flex; align-items: center; gap: 8px; min-width: 0; }
.bbh-search { width: min(360px, 34vw); display: block; }

.bbh-topnav { display: flex; flex-wrap: nowrap; gap: 4px; padding: 6px; background: var(--bbh-panel); border-bottom: 1px solid var(--bbh-border-dark); overflow-x: auto; overflow-y: hidden; }
.bbh-btn, button.bbh-btn { appearance: none; border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); background: var(--bbh-green-soft); color: #132017; padding: 6px 12px; min-height: 30px; font: inherit; font-weight: 700; cursor: pointer; border-radius: 0; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 6px; line-height: 1.1; white-space: nowrap; }
.bbh-btn:hover { background: var(--bbh-green-soft); }
.bbh-btn:active, .bbh-btn.is-selected, .bbh-btn[aria-pressed="true"] { border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: var(--bbh-green-dark); color: #fff; padding-top: 7px; padding-left: 13px; }
.bbh-btn.gold { background: var(--bbh-gold); }
.bbh-btn.danger { background: #c58478; }
.bbh-btn.danger:active, .bbh-btn.danger.is-selected { background: var(--bbh-danger); color: #fff; }

.bbh-main { min-width: 0; padding: 8px; }
.bbh-workspace { min-width: 0; width: 100%; min-height: calc(100vh - 150px); }
.bbh-panel { background: var(--bbh-panel); border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); min-width: 0; }
.bbh-panel-title { background: var(--bbh-green-dark); color: #fff; font-weight: 700; padding: 4px 7px; border-bottom: 1px solid var(--bbh-border-dark); display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.bbh-panel-body { padding: 8px; }
.bbh-grid { display: grid; gap: 8px; }
.bbh-today-grid { display: grid; grid-template-columns: repeat(6, minmax(120px, 1fr)); gap: 8px; }
.bbh-today-card .bbh-panel-body { min-height: 74px; }
.bbh-list { list-style: none; margin: 0; padding: 0; }
.bbh-list-row { display: flex; justify-content: space-between; gap: 8px; align-items: center; padding: 6px 8px; background: var(--bbh-panel-light); border-bottom: 1px solid #a39f93; }
.bbh-list-row:nth-child(odd) { background: #fffbd1; }
.bbh-list-row.is-active { background: #b8d0cf; }
.bbh-fieldrow { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 6px; align-items: center; margin-bottom: 6px; }
label { font-weight: 700; }
input, select, textarea { width: 100%; background: var(--bbh-input); border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); padding: 5px 6px; min-height: 28px; font: inherit; border-radius: 0; }
textarea { min-height: 64px; resize: vertical; }
.bbh-table { width: 100%; border-collapse: collapse; background: var(--bbh-panel-light); }
.bbh-table th, .bbh-table td { border: 1px solid #8f9289; padding: 5px; text-align: left; }
.bbh-table th { background: var(--bbh-green); color: #fff; }
.bbh-statusbar { display: flex; flex-wrap: wrap; gap: 1px; padding: 2px; background: var(--bbh-panel); border-top: 1px solid var(--bbh-border-dark); }
.bbh-status-cell { border: 1px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); padding: 3px 8px; background: var(--bbh-panel-light); min-width: 120px; }
.bbh-badge { display: inline-flex; align-items: center; padding: 2px 6px; border: 1px solid var(--bbh-border-dark); background: #fffbd1; font-weight: 700; white-space: nowrap; }
.bbh-badge.warning { background: #ffe59a; }
.bbh-badge.danger { background: #e9afa8; }
.bbh-badge.ok { background: #b8d7b5; }
.bbh-hidden { display: none !important; }
.bbh-muted { color: var(--bbh-muted); }
.bbh-kpi { font-size: 32px; font-weight: 700; line-height: 1; }
.bbh-small { font-size: 12px; }
.bbh-empty-workspace { min-height: 420px; display: flex; align-items: center; justify-content: center; color: var(--bbh-muted); background: rgba(255,255,255,.24); border: 1px dashed var(--bbh-border-mid); }

@media (max-width: 980px) { .bbh-today-grid { grid-template-columns: repeat(3, minmax(150px, 1fr)); } .bbh-brand-name { font-size: 22px; } .bbh-search { width: 260px; } }
@media (max-width: 680px) { .bbh-header { align-items: flex-start; flex-direction: column; gap: 8px; } .bbh-search { width: 100%; } .bbh-quickbar { width: 100%; } .bbh-today-grid { grid-template-columns: 1fr 1fr; } .bbh-fieldrow { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .bbh-today-grid { grid-template-columns: 1fr; } .bbh-brand-name { font-size: 20px; } }


.bbh-settings-grid { grid-template-columns: 1fr; align-items: start; gap: 10px; }
.bbh-settings-area { margin-bottom: 2px; }
.bbh-title-btn { min-height: 24px; padding: 3px 8px; font-size: 12px; }
.bbh-title-btn:active, .bbh-title-btn.is-selected { padding-top: 4px; padding-left: 9px; }
.bbh-settings-form { margin: 8px 0 10px; padding: 8px; background: var(--bbh-panel-light); border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); }
.bbh-buttonrow { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.bbh-table-wrap { width: 100%; overflow-x: auto; }
.bbh-actions { display: flex; flex-wrap: wrap; gap: 4px; }
.bbh-checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 6px 10px; align-items: center; }
.bbh-checkbox-grid label { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.bbh-checkbox-grid input[type="checkbox"] { width: auto; min-height: 0; }
.bbh-inline-options { display: flex; flex-wrap: wrap; gap: 14px; }
.bbh-inline-options label { display: inline-flex; align-items: center; gap: 6px; }
.bbh-settings-area .bbh-panel-body > p:first-child { margin-top: 0; }
@media (max-width: 760px) { .bbh-actions { flex-direction: column; align-items: stretch; } .bbh-actions .bbh-btn { width: 100%; } }


/* Settings card controls */
.bbh-settings-card-title { padding: 3px 6px; }
.bbh-title-left { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.bbh-card-toggle { min-width: 24px; width: 24px; height: 22px; min-height: 22px; padding: 0; font-size: 16px; line-height: 1; }
.bbh-card-toggle:active, .bbh-card-toggle.is-selected { padding: 0; }

/* Horizontal push-button option groups */
.bbh-push-options { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.bbh-push-option { display: inline-flex; margin: 0; font-weight: 700; }
.bbh-push-input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; min-height: 0; }
.bbh-push-option span { border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); background: var(--bbh-green-soft); color: #132017; padding: 6px 12px; min-height: 30px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; white-space: nowrap; }
.bbh-push-option input:checked + span { border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: var(--bbh-green-dark); color: #fff; padding-top: 7px; padding-left: 13px; }
.bbh-push-option input:focus-visible + span { outline: 2px solid #5b8ed1; outline-offset: 2px; }

/* Settings rate/charge subcards */
.bbh-divider { border: 0; border-top: 1px solid var(--bbh-border-dark); border-bottom: 1px solid var(--bbh-border-light); margin: 10px 0; }
.bbh-subcard { background: var(--bbh-panel-light); border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); padding: 8px; margin-top: 8px; }
.bbh-subcard-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 6px; }
.bbh-compact-input { max-width: 120px; }
@media (max-width: 760px) { .bbh-subcard-head { align-items: flex-start; flex-direction: column; } .bbh-compact-input { max-width: 100%; } }

/* Pet-position pricing rows */
.bbh-pricing-fieldrow { align-items: start; }
.bbh-pet-price-list { display: grid; gap: 5px; max-width: 520px; }
.bbh-pet-price-row { display: grid; grid-template-columns: 86px 120px auto; gap: 6px; align-items: center; }
.bbh-pet-price-label { font-weight: 700; white-space: nowrap; }
.bbh-small-btn { min-height: 26px; padding: 3px 8px; font-size: 12px; }
.bbh-small-btn:active, .bbh-small-btn.is-selected { padding-top: 4px; padding-left: 9px; }
@media (max-width: 680px) { .bbh-pet-price-row { grid-template-columns: 1fr; } }

.bbh-inline-fields { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.bbh-inline-fields input[type="number"] { width: 110px; }
.bbh-inline-fields input[type="date"] { width: 160px; }
.bbh-inline-fields select { width: auto; min-width: 150px; }

/* Clients & Pets workstation */
.bbh-clients-pets { display: flex; flex-direction: column; gap: 8px; }
.bbh-client-search-row input { width: 100%; }
.bbh-client-workstation { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 8px; align-items: start; }
.bbh-client-list-panel { min-height: 520px; }
.bbh-client-results { display: flex; flex-direction: column; gap: 4px; max-height: calc(100vh - 250px); overflow: auto; }
.bbh-client-result { text-align: left; border: 2px outset #d8ddce; background: #eef0e5; color: #1b251d; padding: 8px; cursor: pointer; font: inherit; }
.bbh-client-result:active, .bbh-client-result.is-selected { border-style: inset; background: #17442f; color: #fff; }
.bbh-client-result strong, .bbh-client-result span, .bbh-client-result small { display: block; }
.bbh-client-result small { opacity: .8; }
.bbh-client-file { min-height: 520px; }
.bbh-client-file-title { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.bbh-empty-file { padding: 30px; color: #5d665b; }
.bbh-pet-banner, .bbh-record-tabs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.bbh-record-tabs { border-bottom: 2px solid #4e5a4e; padding-bottom: 6px; }
.bbh-tab-workspace { padding-top: 6px; }
.bbh-record-form label { display: flex; flex-direction: column; gap: 4px; font-weight: 700; }
.bbh-record-form input, .bbh-record-form select, .bbh-record-form textarea,
.bbh-form-grid input, .bbh-form-grid select, .bbh-form-grid textarea { width: 100%; box-sizing: border-box; }
.bbh-form-grid { display: grid; gap: 8px; }
.bbh-form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bbh-form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: end; }
.bbh-form-grid .span-two, .bbh-info-grid .span-two { grid-column: 1 / -1; }
.bbh-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.bbh-info-grid > div { border: 1px solid #8d9488; background: #efede1; padding: 8px; min-height: 42px; }
.bbh-info-grid strong, .bbh-info-grid span { display: block; }
.bbh-info-grid strong { color: #17442f; }
.bbh-pet-info-layout { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 10px; }
.bbh-pet-info-layout .bbh-buttonrow { grid-column: 1 / -1; }
.bbh-pet-photo-box { width: 120px; height: 120px; border: 2px inset #d8ddce; background: #f6f1e5; display: flex; align-items: center; justify-content: center; overflow: hidden; color: #5d665b; }
.bbh-pet-photo-box.large { width: 400px; height: 400px; max-width: 100%; }
.bbh-pet-photo-box img { width: 100%; height: 100%; object-fit: cover; }
.bbh-meal-row { display: grid; grid-template-columns: 80px 120px 220px; gap: 8px; align-items: center; margin-bottom: 7px; }
.bbh-note-card { border: 1px solid #8d9488; background: #efede1; padding: 8px; margin-top: 6px; }
.bbh-note-card small { display: block; color: #5d665b; margin: 4px 0; }
.bbh-photo-layout { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 12px; align-items: start; }
.bbh-crop-wrap { margin-top: 10px; }
.bbh-crop-wrap canvas { width: 400px; height: 400px; max-width: 100%; border: 2px inset #d8ddce; background: #f6f1e5; cursor: move; display: block; }
.bbh-error-text { color: #81291e; font-weight: 700; }
.bbh-small-btn { padding: 4px 10px; font-size: .9em; }
@media (max-width: 900px) {
  .bbh-client-workstation { grid-template-columns: 1fr; }
  .bbh-form-grid.two, .bbh-form-grid.three, .bbh-info-grid, .bbh-pet-info-layout, .bbh-photo-layout { grid-template-columns: 1fr; }
  .bbh-meal-row { grid-template-columns: 1fr; }
}

/* Restored Clients & Pets workstation layout */
.clients-pets-workstation { min-height: calc(100vh - 170px); }
.clients-pets-titlebar { align-items: center; }
.clients-pets-searchbar { display: flex; gap: 8px; padding: 8px; background: var(--bbh-panel); border-bottom: 1px solid var(--bbh-border-dark); }
.clients-pets-search-label { flex: 1 1 auto; }
.clients-pets-search { width: 100%; }
.clients-pets-add-client { flex: 0 0 auto; }
.clients-pets-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 8px; padding: 8px; min-height: calc(100vh - 260px); }
.clients-pets-list-panel { border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: var(--bbh-panel-light); min-height: 420px; }
.clients-pets-list-header { background: var(--bbh-green); color: #fff; font-weight: 700; padding: 5px 7px; border-bottom: 1px solid var(--bbh-border-dark); }
.clients-pets-list { display: flex; flex-direction: column; gap: 4px; padding: 6px; max-height: calc(100vh - 300px); overflow: auto; }
.clients-pets-empty { padding: 8px; color: var(--bbh-muted); }
.clients-pets-empty.wide { border: 1px dashed var(--bbh-border-mid); background: var(--bbh-panel-light); }
.client-result { text-align: left; width: 100%; border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); background: var(--bbh-green-soft); color: #132017; padding: 7px; cursor: pointer; font: inherit; }
.client-result.is-selected, .client-result:active { border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: var(--bbh-green-dark); color: #fff; }
.client-result-name, .client-result-pets, .client-result-contact { display: block; }
.client-result-name { font-weight: 700; }
.client-result-pets, .client-result-contact { font-size: 12px; opacity: .85; }
.clients-pets-record-panel { min-width: 0; min-height: 420px; }
.clients-pets-record-empty { padding: 28px; color: var(--bbh-muted); background: var(--bbh-panel-light); border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); }
.clients-pets-record-empty-title { font-weight: 700; font-size: 18px; color: var(--bbh-green-dark); margin-bottom: 4px; }
.client-file-window { height: 100%; border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: var(--bbh-panel-light); }
.client-file-titlebar { display: flex; justify-content: space-between; align-items: center; gap: 8px; background: var(--bbh-green-dark); color: #fff; padding: 7px; border-bottom: 1px solid var(--bbh-border-dark); }
.client-file-kicker { display: block; font-size: 11px; opacity: .9; }
.pet-banner { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; padding: 7px; background: var(--bbh-panel); border-bottom: 1px solid var(--bbh-border-dark); }
.pet-banner-label { font-weight: 700; margin-right: 2px; }
.pet-pill.add { background: #c8b56c; }
.client-file-tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 6px 7px; background: var(--bbh-panel-light); border-bottom: 1px solid var(--bbh-border-dark); }
.client-file-tab { min-height: 28px; }
.client-file-body { padding: 8px; }
.bbh-form-grid.client-info-form, .bbh-form-grid.pet-info-form, .bbh-form-grid.section-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; align-items: start; }
.bbh-form-grid label { display: flex; flex-direction: column; gap: 4px; }
.bbh-form-grid .span-2, .span-2 { grid-column: 1 / -1; }
.form-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.submodule-card { background: var(--bbh-panel); border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); padding: 8px; }
.submodule-card-title { background: var(--bbh-green); color: #fff; font-weight: 700; margin: -8px -8px 8px; padding: 5px 7px; border-bottom: 1px solid var(--bbh-border-dark); }
.section-table { margin-top: 8px; }
.bbh-meal-row { display: grid; grid-template-columns: 80px 130px minmax(180px, 260px); gap: 8px; align-items: center; margin-bottom: 7px; }
.bbh-photo-layout { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 12px; align-items: start; }
.bbh-pet-photo-box { width: 120px; height: 120px; border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: #f6f1e5; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--bbh-muted); }
.bbh-pet-photo-box.large { width: 400px; height: 400px; max-width: 100%; }
.bbh-pet-photo-box img { width: 100%; height: 100%; object-fit: cover; }
.bbh-crop-wrap { margin-top: 10px; }
.bbh-crop-wrap canvas { width: 400px; height: 400px; max-width: 100%; border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: #f6f1e5; cursor: move; display: block; }
.bbh-note-card { border: 1px solid var(--bbh-border-mid); background: var(--bbh-panel-light); padding: 8px; margin-top: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 900px) {
  .clients-pets-layout { grid-template-columns: 1fr; }
  .bbh-form-grid.client-info-form, .bbh-form-grid.pet-info-form, .bbh-form-grid.section-form, .bbh-photo-layout { grid-template-columns: 1fr; }
  .bbh-meal-row { grid-template-columns: 1fr; }
}

/* Enclosure Map module - visual inventory grid */
.bbh-enclosure-map-module .bbh-panel-body { overflow: visible; }
.bbh-enclosure-map-intro { margin-bottom: 8px; }
.bbh-enclosure-map-toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 6px 0 10px; }
.bbh-enclosure-map-content { display: grid; gap: 12px; width: 100%; }
.bbh-enclosure-type-card { background: var(--bbh-panel-light); border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); width: 100%; box-sizing: border-box; }
.bbh-enclosure-type-head { background: var(--bbh-green-dark); color: #fff; padding: 6px 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--bbh-border-dark); }
.bbh-enclosure-type-title strong { display: block; font-size: 16px; line-height: 1.1; }
.bbh-enclosure-type-title span { display: block; font-size: 12px; font-weight: 400; opacity: .9; margin-top: 2px; }
.bbh-enclosure-tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; padding: 8px; align-items: stretch; }
.bbh-enclosure-tile { appearance: none; -webkit-appearance: none; border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); padding: 7px; min-height: 112px; display: grid; grid-template-rows: auto 1fr auto; gap: 6px; text-align: center; font-weight: 700; font: inherit; cursor: default; box-sizing: border-box; width: 100%; white-space: normal; }
.bbh-enclosure-tile.is-capacity-medium { min-height: 142px; }
.bbh-enclosure-tile.is-capacity-large { min-height: 176px; }
.bbh-enclosure-tile.is-open { background: var(--bbh-green-soft); color: #111b14; }
.bbh-enclosure-tile.is-occupied { background: var(--bbh-green-dark); color: #fff; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); }
.bbh-enclosure-name { font-size: 14px; border-bottom: 1px solid rgba(0,0,0,.25); padding-bottom: 4px; display: block; line-height: 1.15; }
.bbh-enclosure-pets { display: flex; flex-direction: column; justify-content: center; gap: 4px; min-height: 40px; }
.bbh-enclosure-pet-name, .bbh-enclosure-placeholder { display: block; line-height: 1.15; }
.bbh-enclosure-placeholder { text-transform: none; }
.bbh-enclosure-capacity { font-size: 11px; opacity: .82; border-top: 1px solid rgba(0,0,0,.25); padding-top: 4px; display: block; }
.bbh-enclosure-tile.is-occupied .bbh-enclosure-name,
.bbh-enclosure-tile.is-occupied .bbh-enclosure-capacity { border-color: rgba(255,255,255,.35); }
.bbh-enclosure-empty-type { padding: 12px; color: var(--bbh-muted); border: 1px dashed var(--bbh-border-mid); background: rgba(255,255,255,.35); }
@media (max-width: 680px) { .bbh-enclosure-tile-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } }

/* Enclosure Map spacing/color refinement */
.bbh-enclosure-map-content {
  gap: 18px;
}
.bbh-enclosure-type-card {
  margin-bottom: 14px;
}
.bbh-enclosure-type-head {
  padding: 7px 10px;
}
.bbh-enclosure-tile-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 170px));
  gap: 12px;
  padding: 12px;
  align-items: start;
}
.bbh-enclosure-tile,
button.bbh-enclosure-tile {
  background-color: #9eb29a !important;
  color: #111b14 !important;
  border: 2px solid;
  border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light);
  padding: 10px 8px;
  min-height: 122px;
  width: 170px;
  max-width: 170px;
  line-height: 1.15;
}
.bbh-enclosure-tile.is-capacity-medium,
button.bbh-enclosure-tile.is-capacity-medium {
  min-height: 152px;
}
.bbh-enclosure-tile.is-capacity-large,
button.bbh-enclosure-tile.is-capacity-large {
  min-height: 190px;
}
.bbh-enclosure-tile.is-occupied,
button.bbh-enclosure-tile.is-occupied {
  background-color: var(--bbh-green-dark) !important;
  color: #fff !important;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
}
.bbh-enclosure-name {
  margin-bottom: 4px;
}
.bbh-enclosure-pets {
  padding: 4px 0;
}
.bbh-enclosure-placeholder {
  font-weight: 700;
}
@media (max-width: 680px) {
  .bbh-enclosure-tile-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 150px)); gap: 10px; }
  .bbh-enclosure-tile, button.bbh-enclosure-tile { width: 150px; max-width: 150px; }
}

/* Settings subcards and multiple title actions */
.bbh-title-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.bbh-subpanel {
  border: 2px solid;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
  padding: 10px;
  margin: 10px 0 14px;
  background: rgba(255,255,255,.22);
}
.bbh-subpanel-title {
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--bbh-green-dark);
}

/* Settings section menu: replaces long stacked settings cards with button-driven section pages. */
.bbh-settings-menu-mode {
  display: block;
}
.bbh-settings-menu-panel .bbh-panel-body {
  padding: 14px;
}
.bbh-settings-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.bbh-settings-menu-btn {
  width: 100%;
  min-height: 64px;
  text-align: left;
  font-size: 18px;
  padding: 14px 16px;
}
.bbh-settings-back {
  margin-left: auto;
  margin-right: 8px;
}
.bbh-settings-area.bbh-hidden,
.bbh-settings-menu-panel.bbh-hidden {
  display: none !important;
}
.bbh-settings-menu-mode .bbh-settings-area:not(.bbh-hidden) {
  display: block;
}

/* BBH v2 login and security controls */
.bbh-login-body {
  background: var(--bbh-bg, #f4f0e5);
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
}
.bbh-login-shell {
  width: min(720px, calc(100vw - 32px));
}
.bbh-login-card {
  width: 100%;
}
.bbh-login-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.bbh-login-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--bbh-green-dark, #183f2b);
}
.bbh-status-note {
  min-height: 22px;
  font-weight: 700;
}
.bbh-pin-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 31, 24, 0.35);
  display: grid;
  place-items: center;
}
.bbh-pin-modal.bbh-hidden {
  display: none !important;
}
.bbh-pin-card {
  width: min(420px, calc(100vw - 32px));
  background: var(--bbh-panel, #d7d3c6);
  border: 2px solid var(--bbh-green-dark, #183f2b);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
}
.bbh-pin-card input[name="pin"] {
  font-size: 28px;
  letter-spacing: 6px;
  text-align: center;
  width: 100%;
}
.bbh-quickbar .bbh-btn {
  white-space: nowrap;
}

/* Universal calendar shared by Grooming, Training, and Dog Walking. */
.bbh-universal-calendar .bbh-panel-body {
  padding: 10px;
}
.bbh-calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}
.bbh-calendar-date {
  width: 160px;
  min-width: 160px;
}
.bbh-calendar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
}
.bbh-calendar-table-wrap {
  width: 100%;
  overflow: auto;
  border: 2px solid;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
  background: #fffef5;
}
.bbh-calendar-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ebe9de;
}
.bbh-calendar-table th,
.bbh-calendar-table td {
  border-left: 1px solid rgba(75, 85, 70, 0.38);
  border-right: 1px solid rgba(255, 253, 243, 0.65);
}
.bbh-calendar-table thead tr:first-child th {
  background: var(--bbh-green-dark);
  color: #fff;
  font-weight: 800;
  padding: 10px 8px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
}
.bbh-calendar-table thead tr:first-child th:first-child {
  width: 120px;
  text-align: left;
  padding-left: 16px;
}
.bbh-calendar-buffer-row th {
  height: 18px;
  padding: 0;
  background: #fffdf7;
  border-top: 2px solid var(--bbh-gold);
  border-bottom: 1px solid #d3c484;
}
.bbh-calendar-slot {
  height: 20px;
}
.bbh-calendar-slot.is-quarter td {
  border-top: 1px dotted rgba(75, 85, 70, 0.22);
}
.bbh-calendar-slot.is-hour td {
  border-top: 2px solid #d3bb66;
}
.bbh-calendar-time-cell {
  width: 120px;
  background: #f7f3e8;
  color: var(--bbh-muted);
  font-weight: 800;
  text-align: right;
  padding: 0 12px 0 4px;
  white-space: nowrap;
  vertical-align: top;
  line-height: 20px;
}
.bbh-calendar-lane-cell {
  position: relative;
  background: rgba(255,255,255,.16);
  min-width: 240px;
  padding: 0;
}
.bbh-calendar-slot:hover .bbh-calendar-lane-cell {
  background: rgba(158, 178, 154, 0.16);
}
@media (max-width: 760px) {
  .bbh-calendar-date { width: 100%; }
  .bbh-calendar-toolbar .bbh-btn { flex: 1 1 auto; }
  .bbh-calendar-table { min-width: 860px; }
}

/* Top navigation stability: prevent button compression/bounce while allowing horizontal scroll. */
.bbh-topnav { align-items: center; scrollbar-gutter: stable; overscroll-behavior-x: contain; }
.bbh-topnav .bbh-btn { flex: 0 0 auto; }
.bbh-shell, .bbh-header, .bbh-main, .bbh-workspace { min-width: 0; }
.bbh-quickbar { flex: 0 0 auto; }
@media (max-width: 900px) {
  .bbh-brand-name { font-size: clamp(22px, 5vw, 34px); }
  .bbh-header { flex-wrap: nowrap; }
}

/* Grooming Settings */
.groom-type-preview { display: inline-flex; align-items: center; justify-content: center; min-width: 210px; min-height: 42px; padding: 8px 12px; border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); font-weight: 700; }
.groom-type-preview.mini { min-width: 140px; min-height: 30px; padding: 5px 9px; }
.bbh-settings-area[data-settings-card="grooming-settings"] .bbh-subcard { margin-bottom: 12px; }
.bbh-settings-area[data-settings-card="grooming-settings"] input[type="color"] { width: 90px; min-height: 34px; padding: 2px; }
.bbh-settings-area[data-settings-card="grooming-settings"] .bbh-inline-options { align-items: center; }

/* Create Booking workstation v2 horizontal booking layout */
.bbh-create-booking .bbh-panel-body { padding: 8px; }
.bbh-booking-searchbar { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; }
.bbh-booking-searchbar input { flex: 1 1 auto; min-width: 220px; }
.bbh-booking-results { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; min-height: 0; }
.bbh-client-result { text-align: left; min-width: 180px; max-width: 260px; padding: 8px 10px; background: var(--bbh-sage); border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); color: var(--bbh-ink); font: inherit; cursor: pointer; }
.bbh-client-result strong, .bbh-client-result span { display: block; }
.bbh-client-result:hover { outline: none; }
.bbh-booking-actions { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; }
.bbh-booking-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 8px; align-items: start; }
.bbh-booking-main-card, .bbh-booking-cart-card { border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: var(--bbh-panel); padding: 8px; }
.bbh-booking-cart-card { padding: 0; }
.bbh-panel-title.mini { padding: 6px 8px; font-size: 15px; }
.bbh-panel-body.compact { padding: 8px; }
.bbh-booking-context-row { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 6px; margin-bottom: 6px; }
.bbh-info-field { background: #f7f4e8; border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); padding: 5px 7px; min-height: 42px; }
.bbh-info-field span { display: block; font-size: 12px; font-weight: 800; color: var(--bbh-muted); text-transform: uppercase; letter-spacing: .03em; }
.bbh-info-field strong { display: block; color: var(--bbh-green-dark); line-height: 1.1; }
.bbh-booking-pet-row { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.bbh-booking-pet-row > label { font-weight: 800; min-width: 42px; }
.bbh-push-group { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.bbh-push { background: var(--bbh-sage); color: var(--bbh-ink); border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); padding: 7px 12px; font-weight: 800; font: inherit; cursor: pointer; }
.bbh-push.is-selected, .bbh-push.is-active-pet { background: var(--bbh-green-dark); color: #fff; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); }
.bbh-medical-push { background: #c98578; color: #102016; }
.bbh-medical-push.is-selected { background: #8b2f28; color: #fff; }
.bbh-booking-service-row { margin-bottom: 6px; }
.bbh-booking-top-workrow { display: grid; grid-template-columns: 430px minmax(0, 1fr); gap: 8px; align-items: stretch; margin-bottom: 8px; }
.bbh-booking-datetime-card, .bbh-booking-addons-card, .bbh-booking-enclosure-card, .bbh-booking-notes-row { border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: #ece8dc; padding: 8px; }
.bbh-datetime-line { display: grid; grid-template-columns: 1fr 120px; gap: 6px; margin-bottom: 6px; }
.bbh-datetime-line label { font-weight: 800; }
.bbh-datetime-line input { display: block; width: 100%; min-width: 0; margin-top: 2px; }
.bbh-datetime-line input[type="time"] { text-align: center; }
.bbh-datetime-line input.is-daycare-linked { background: #e7e3d7; color: #4f5a4c; }
.bbh-booking-addons-card { display: grid; grid-template-columns: 1fr; gap: 8px; align-content: start; }
.bbh-addon-title { font-weight: 900; margin-bottom: 5px; }
.bbh-addon-title.medical { color: #8b2f28; }
.bbh-addon-row .bbh-push span { font-size: 11px; margin-left: 3px; }
.bbh-section-heading { font-weight: 900; color: var(--bbh-green-dark); margin-bottom: 3px; }
.bbh-booking-enclosure-card { margin-bottom: 8px; }
.bbh-booking-enclosure-scroll { height: 158px; overflow: auto; border: 1px solid rgba(75, 85, 70, .45); background: #f7f3e8; padding: 6px; margin-top: 6px; }
.bbh-booking-enclosure-group { margin-bottom: 9px; }
.bbh-booking-enclosure-type { font-weight: 900; margin-bottom: 4px; color: var(--bbh-green-dark); }
.bbh-booking-enclosure-type span { font-weight: 700; color: var(--bbh-muted); font-size: 12px; }
.bbh-booking-enclosure-buttons { display: flex; flex-wrap: wrap; gap: 7px; }
.bbh-enclosure-choice { min-width: 118px; min-height: 58px; padding: 7px 8px; background: var(--bbh-sage); color: var(--bbh-ink); border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); text-align: left; cursor: pointer; font: inherit; }
.bbh-enclosure-choice strong, .bbh-enclosure-choice span { display: block; line-height: 1.12; }
.bbh-enclosure-choice span { font-size: 12px; color: inherit; opacity: .9; }
.bbh-enclosure-choice.is-selected { background: var(--bbh-green-dark); color: #fff; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); }
.bbh-booking-notes-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 210px; gap: 8px; margin-bottom: 8px; }
.bbh-booking-storage-layout { grid-template-columns: minmax(360px, 1fr) minmax(260px, 0.9fr); align-items: stretch; }
.bbh-booking-storage-layout .bbh-storage-hook { grid-column: 1 / 2; }
.bbh-storage-horizontal-fields { display: grid; grid-template-columns: minmax(160px, 1fr) minmax(180px, 1fr); gap: 8px; align-items: end; }
.bbh-storage-photo-panel { grid-column: 2 / 3; grid-row: 1 / 3; min-height: 190px; border: 1px dashed #9aa588; background: #ece8dc; display: flex; align-items: center; justify-content: center; padding: 8px; overflow: hidden; }
.bbh-storage-photo-placeholder { color: #516052; font-size: 18px; text-align: center; }
.bbh-storage-photo-preview { max-width: 100%; max-height: 260px; object-fit: contain; border: 2px solid #4a634c; background: #fffef3; }
.bbh-booking-notes-full { grid-column: 1 / 2; }
.bbh-booking-notes-row label { font-weight: 800; }
.bbh-booking-notes-row textarea { display: block; width: 100%; min-height: 58px; resize: vertical; margin-top: 3px; }
.bbh-storage-hook { background: #fffbcf; border: 1px dashed #9aa588; padding: 7px; }
.bbh-storage-hook p { margin: 3px 0 6px; font-size: 12px; }
.bbh-cart-item { background: #f7f4e8; border: 1px solid #a0a496; padding: 8px; margin: 8px; }
.bbh-cart-item strong, .bbh-cart-item span { display: block; margin-bottom: 4px; }
.bbh-btn.danger { background: #c98578; }
.bbh-pet-snapshot { margin-top: 8px; }
.bbh-pet-profile-tabs { margin-bottom: 8px; }
.bbh-snapshot-grid { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 6px 16px; }
.bbh-snapshot-grid > div, .bbh-snapshot-line { border-bottom: 1px solid rgba(75,85,70,.35); padding: 4px 0; }
.bbh-snapshot-grid b, .bbh-snapshot-grid strong, .bbh-snapshot-line strong { color: var(--bbh-green-dark); margin-right: 8px; }
.bbh-snapshot-grid span, .bbh-snapshot-line span { display: inline-block; }
.bbh-empty-workspace.compact { min-height: auto; padding: 12px; }
@media (max-width: 1000px) {
  .bbh-booking-grid { grid-template-columns: 1fr; }
  .bbh-booking-top-workrow { grid-template-columns: 1fr; }
  .bbh-booking-context-row { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .bbh-booking-notes-row, .bbh-booking-storage-layout { grid-template-columns: 1fr; }
  .bbh-storage-photo-panel, .bbh-booking-storage-layout .bbh-storage-hook, .bbh-booking-notes-full { grid-column: 1 / -1; grid-row: auto; }
  .bbh-storage-horizontal-fields { grid-template-columns: 1fr; }
}

/* Create Booking preferred enclosure / per-date assignment refinement */
.bbh-booking-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
}
.bbh-booking-context-row.compact {
  grid-template-columns: minmax(90px, .75fr) minmax(90px, .75fr) minmax(110px, .85fr) minmax(110px, .85fr) minmax(150px, 1fr);
}
.bbh-booking-top-workrow {
  grid-template-columns: 330px minmax(0, 1fr);
}
.bbh-datetime-line {
  grid-template-columns: minmax(0, 1fr) 92px;
}
.bbh-booking-addons-card {
  min-height: 122px;
}
.bbh-booking-cart-card {
  min-width: 320px;
}
.bbh-booking-enclosure-scroll {
  height: 190px;
}
.bbh-booking-date-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(75,85,70,.35);
  background: #f7f3e8;
  margin-bottom: 6px;
}
.bbh-date-slot {
  min-width: 92px;
  min-height: 54px;
  background: var(--bbh-sage);
  color: var(--bbh-ink);
  border: 2px solid;
  border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light);
  font: inherit;
  text-align: left;
  padding: 6px 8px;
  cursor: pointer;
}
.bbh-date-slot strong,
.bbh-date-slot span {
  display: block;
  line-height: 1.1;
}
.bbh-date-slot span {
  font-size: 11px;
  opacity: .9;
  margin-top: 3px;
}
.bbh-date-slot.is-selected {
  background: var(--bbh-green-dark);
  color: #fff;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
}
.bbh-enclosure-auto-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--bbh-muted);
  margin: 5px 0 8px;
}
.bbh-enclosure-auto-line strong {
  color: var(--bbh-green-dark);
}
.bbh-enclosure-choice.is-daycare-occupied {
  background: #f4dc75;
  color: #111b14;
}
.bbh-enclosure-choice.is-boarding-occupied {
  background: #173f75;
  color: #fff;
}
.bbh-enclosure-choice.is-unavailable {
  opacity: .78;
  cursor: not-allowed;
}
.bbh-cart-item {
  cursor: pointer;
}
.bbh-cart-total {
  margin: 8px;
  padding: 8px;
  border: 2px solid;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
  background: #fff8cf;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-weight: 900;
}
@media (max-width: 1150px) {
  .bbh-booking-grid { grid-template-columns: 1fr; }
  .bbh-booking-cart-card { min-width: 0; }
}
@media (max-width: 900px) {
  .bbh-booking-context-row.compact { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .bbh-booking-top-workrow { grid-template-columns: 1fr; }
}

/* BBH reusable date picker + cart breakdown refinement */
.bbh-date-input { min-width: 112px; }
.bbh-date-modal { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.08); }
.bbh-date-modal.bbh-hidden { display: none; }
.bbh-date-card { position: fixed; width: 286px; background: var(--bbh-panel); border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); box-shadow: 2px 2px 0 rgba(0,0,0,.25); }
.bbh-date-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px; }
.bbh-date-controls select { width: 100%; }
.bbh-date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; padding: 0 8px 8px; }
.bbh-date-dow { text-align: center; font-weight: 900; color: var(--bbh-green-dark); padding: 3px 0; }
.bbh-date-grid button { min-height: 30px; background: var(--bbh-sage); color: var(--bbh-ink); border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); font-weight: 800; cursor: pointer; }
.bbh-date-grid button.is-selected { background: var(--bbh-green-dark); color: #fff; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); }
.bbh-date-card .bbh-buttonrow { padding: 0 8px 8px; }
.bbh-cart-breakdown { border: 1px solid rgba(75,85,70,.35); background: rgba(255,255,255,.35); margin: 6px 0; padding: 4px; }
.bbh-cart-breakdown-line { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: start; border-bottom: 1px solid rgba(75,85,70,.22); padding: 4px 0; }
.bbh-cart-breakdown-line:last-child { border-bottom: 0; }
.bbh-cart-breakdown-line span, .bbh-cart-breakdown-line strong, .bbh-cart-breakdown-line small { display: block; margin: 0; }
.bbh-cart-breakdown-line small { color: var(--bbh-muted); font-size: 11px; font-weight: 700; }
.bbh-cart-breakdown-line b { white-space: nowrap; }
.bbh-booking-grid { grid-template-columns: minmax(0, 1fr) 380px; }
.bbh-booking-cart-card { min-width: 360px; }
@media (max-width: 1150px) { .bbh-booking-grid { grid-template-columns: 1fr; } .bbh-booking-cart-card { min-width: 0; } }

/* Add-on assignment modal shared by Create Booking and future portal flows */
.bbh-modal-overlay[data-addon-assignment-modal] {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.bbh-addon-assignment-modal {
  width: min(760px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: var(--bbh-panel);
  border: 3px solid;
  border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .25);
}
.bbh-modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bbh-green-dark);
  color: #fff;
  font-weight: 900;
}
.bbh-modal-body { padding: 10px; }
.bbh-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px 10px 10px;
}
.bbh-addon-modal-summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  margin-bottom: 8px;
  background: #f7f3e8;
  border: 1px solid rgba(75, 85, 70, .55);
}
.bbh-addon-med-list {
  padding: 8px;
  margin: 8px 0;
  background: #fff8d3;
  border: 1px dashed #8b2f28;
}
.bbh-addon-assignment-section { margin: 10px 0; }
.bbh-addon-assignment-section > strong { display: block; margin-bottom: 5px; }
.bbh-addon-date-buttons { max-height: 140px; overflow: auto; padding: 4px; border: 1px solid rgba(75,85,70,.35); background: #f7f3e8; }
.bbh-addon-notes-label { display: block; margin-top: 10px; }
.bbh-addon-notes-label textarea { width: 100%; min-height: 70px; resize: vertical; margin-top: 4px; }

/* Recurring daycare controls and confirmation */
.bbh-recurring-daycare-settings {
  margin: 0 0 12px;
  padding: 8px;
  background: #f7f4e8;
  border: 2px solid;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
}
.bbh-recurring-daycare-card {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 2px solid var(--bbh-border-dark);
}
.bbh-recurring-title {
  font-weight: 900;
  color: var(--bbh-green-dark);
  margin-bottom: 5px;
}
.bbh-recurring-days {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.bbh-push.small,
.bbh-btn.small {
  padding: 5px 8px;
  font-size: 12px;
}
.bbh-buttonrow.compact {
  margin-top: 4px;
  gap: 6px;
  align-items: center;
}
.bbh-status-note {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--bbh-green-dark);
}
.bbh-error-text {
  color: #8b2f28 !important;
}
.bbh-cart-item.is-recurring-preview {
  border: 2px solid;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
  background: #fffbe4;
  cursor: default;
}
.bbh-cart-item.is-recurring-preview .bbh-cart-breakdown {
  max-height: 360px;
  overflow: auto;
}

.bbh-title-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

/* General business settings + universal invoice template */
.bbh-business-settings-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.bbh-business-logo-box,
.bbh-business-fields {
  border: 2px inset #f6f3e8;
  background: #ece7d9;
  padding: 10px;
}
.bbh-business-fields label,
.bbh-business-logo-box label {
  display: block;
  font-weight: 700;
  margin-bottom: 9px;
}
.bbh-business-fields input,
.bbh-business-fields textarea,
.bbh-business-logo-box input {
  width: 100%;
  box-sizing: border-box;
  margin-top: 3px;
}
.bbh-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.bbh-invoice-logo-preview {
  min-height: 140px;
  border: 2px inset #f7f3e8;
  background: #f8f6ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #17442f;
  font-size: 30px;
  font-weight: 900;
}
.bbh-invoice-logo-preview img {
  max-width: 220px;
  max-height: 130px;
  object-fit: contain;
}
.bbh-invoice-template-module .bbh-panel-body {
  overflow-x: auto;
}
.bbh-invoice-page {
  width: 760px;
  min-height: 980px;
  margin: 8px auto 20px auto;
  padding: 48px 58px;
  background: #fbfaf4;
  color: #1e2b22;
  border: 2px solid #17442f;
  box-shadow: 0 0 0 14px #c2d0b8;
  font-family: Arial, Helvetica, sans-serif;
}
.bbh-invoice-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: start;
  border-bottom: 2px solid #c2d0b8;
  padding-bottom: 18px;
}
.bbh-invoice-business {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bbh-invoice-logo-mark {
  width: 82px;
  height: 82px;
  border: 2px solid #c2d0b8;
  background: #eef1e7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #17442f;
  font-weight: 900;
}
.bbh-invoice-logo-mark img {
  max-width: 78px;
  max-height: 78px;
  object-fit: contain;
}
.bbh-invoice-business h2 {
  margin: 0 0 6px 0;
  color: #17442f;
  font-size: 29px;
  letter-spacing: 0.3px;
}
.bbh-invoice-business p {
  margin: 2px 0;
  line-height: 1.3;
}
.bbh-invoice-meta {
  border: 2px solid #c2d0b8;
}
.bbh-invoice-meta div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  border-bottom: 1px solid #c2d0b8;
}
.bbh-invoice-meta div:last-child { border-bottom: 0; }
.bbh-invoice-meta strong {
  background: #17442f;
  color: #fff;
  padding: 8px;
}
.bbh-invoice-meta span { padding: 8px; background: #f8f6ed; }
.bbh-invoice-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 22px 0 18px 0;
}
.bbh-invoice-info-grid h3,
.bbh-invoice-terms h3 {
  margin: 0 0 6px 0;
  color: #17442f;
  font-size: 16px;
}
.bbh-invoice-blank {
  min-height: 58px;
  border: 2px solid #c2d0b8;
  padding: 10px;
  background: #fffdf7;
  color: #5c665d;
}
.bbh-invoice-blank.large { min-height: 92px; }
.bbh-invoice-lines {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.bbh-invoice-lines th {
  background: #17442f;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  border: 1px solid #c2d0b8;
}
.bbh-invoice-lines td {
  border: 1px solid #c2d0b8;
  padding: 10px;
  background: #fffdf7;
}
.bbh-invoice-lines tbody tr:nth-child(even) td { background: #e4eadc; }
.bbh-invoice-lines td:nth-child(2),
.bbh-invoice-lines td:nth-child(3),
.bbh-invoice-lines td:nth-child(4) { text-align: right; white-space: nowrap; }
.bbh-invoice-lines tr.empty td { height: 30px; }
.bbh-invoice-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}
.bbh-invoice-terms {
  border: 2px solid #c2d0b8;
  background: #fffdf7;
  padding: 12px;
  min-height: 100px;
}
.bbh-invoice-terms p { margin: 0; line-height: 1.35; }
.bbh-invoice-totals { border: 2px solid #c2d0b8; }
.bbh-invoice-totals div {
  display: grid;
  grid-template-columns: 1fr 120px;
  border-bottom: 1px solid #c2d0b8;
}
.bbh-invoice-totals div:last-child { border-bottom: 0; }
.bbh-invoice-totals span,
.bbh-invoice-totals strong { padding: 9px 10px; }
.bbh-invoice-totals span { background: #f8f6ed; }
.bbh-invoice-totals strong { background: #e4eadc; text-align: right; }
.bbh-invoice-totals .total span,
.bbh-invoice-totals .total strong {
  background: #17442f;
  color: #fff;
  font-size: 18px;
}
@media print {
  .bbh-shell-header, .bbh-top-nav, .bbh-statusbar, .bbh-panel-title, .bbh-invoice-template-module > .bbh-panel-body > p { display: none !important; }
  .bbh-invoice-page { box-shadow: none; border: 0; margin: 0; width: auto; min-height: 0; }
}

/* Invoice and receipt print refinements */
.bbh-invoice-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 8px 0 10px;
}
.bbh-invoice-page {
  width: 720px;
  min-height: auto;
  margin: 8px auto 20px auto;
  padding: 34px 44px;
  box-sizing: border-box;
}
.bbh-invoice-header.compact {
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
  padding-bottom: 12px;
}
.bbh-invoice-header.compact .bbh-invoice-logo-mark {
  width: 64px;
  height: 64px;
}
.bbh-invoice-header.compact .bbh-invoice-logo-mark img {
  max-width: 60px;
  max-height: 60px;
}
.bbh-invoice-header.compact .bbh-invoice-business h2 {
  font-size: 24px;
  margin-bottom: 4px;
}
.bbh-invoice-info-grid.compact {
  gap: 14px;
  margin: 14px 0 12px;
}
.bbh-invoice-info-grid.compact .bbh-invoice-blank {
  min-height: 45px;
  padding: 8px;
  font-size: 12px;
}
.bbh-invoice-info-grid.compact .bbh-invoice-blank.large {
  min-height: 60px;
}
.bbh-invoice-lines.compact {
  font-size: 12px;
}
.bbh-invoice-lines.compact th,
.bbh-invoice-lines.compact td {
  padding: 6px 7px;
}
.bbh-invoice-lines.compact td:nth-child(2),
.bbh-invoice-lines.compact td:nth-child(3),
.bbh-invoice-lines.compact td:nth-child(4),
.bbh-invoice-lines.compact td:nth-child(5) {
  text-align: right;
  white-space: nowrap;
}
.bbh-invoice-lines.compact tr.empty td {
  height: 20px;
}
.bbh-invoice-bottom.compact {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
  margin-top: 16px;
}
.bbh-invoice-bottom.compact .bbh-invoice-terms {
  min-height: 70px;
  padding: 9px;
  font-size: 12px;
}
.bbh-invoice-bottom.compact .bbh-invoice-totals span,
.bbh-invoice-bottom.compact .bbh-invoice-totals strong {
  padding: 6px 8px;
}
.bbh-print-footer-message {
  margin-top: 14px;
  border-top: 1px dashed #17442f;
  padding-top: 8px;
  text-align: center;
  color: #17442f;
  font-weight: 800;
}
.bbh-receipt-source { display: none; }
@media print {
  @page { size: letter portrait; margin: 0.35in; }
  .bbh-header, .bbh-topnav, .bbh-statusbar, .bbh-invoice-actions, .no-print { display: none !important; }
  .bbh-shell, .bbh-main, .bbh-workspace, .bbh-panel, .bbh-panel-body { border: 0 !important; box-shadow: none !important; background: #fff !important; padding: 0 !important; margin: 0 !important; }
  body { background: #fff !important; }
  .bbh-invoice-page {
    box-shadow: none !important;
    border: 1px solid #17442f !important;
    width: 7.55in !important;
    max-width: 7.55in !important;
    margin: 0 auto !important;
    padding: 0.28in !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .bbh-invoice-lines th, .bbh-invoice-lines td { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .bbh-invoice-bottom, .bbh-invoice-header, .bbh-invoice-info-grid { page-break-inside: avoid; break-inside: avoid; }
}


/* Roster dashboard: keep count cards and list columns aligned */
.bbh-roster-count-grid,
.bbh-roster-list-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 8px;
  align-items: stretch;
}
.bbh-roster-list-grid {
  margin-top: 2px;
}
.bbh-roster-list-card {
  min-width: 0;
}
.bbh-roster-list-card .bbh-panel-body {
  min-height: 260px;
  padding: 0;
}
.bbh-roster-empty {
  padding: 8px;
}
.bbh-roster-rows {
  display: block;
  width: 100%;
}
@media (max-width: 1180px) {
  .bbh-roster-count-grid,
  .bbh-roster-list-grid { grid-template-columns: repeat(3, minmax(170px, 1fr)); }
}
@media (max-width: 760px) {
  .bbh-roster-count-grid,
  .bbh-roster-list-grid { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
}
@media (max-width: 520px) {
  .bbh-roster-count-grid,
  .bbh-roster-list-grid { grid-template-columns: 1fr; }
}

/* Roster right-click / long-press action menu */
.bbh-roster-row {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(53, 72, 55, .22);
  background: #f8f5e9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  padding: 4px 6px;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.bbh-roster-row:nth-child(even) { background: #e3eadd; }
.bbh-roster-row:hover { outline: 2px solid #194b36; outline-offset: -2px; }
.bbh-roster-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bbh-roster-context-menu,
.bbh-roster-context-submenu {
  position: fixed;
  z-index: 99999;
  min-width: 190px;
  background: #f8f5e9;
  border: 2px solid #194b36;
  box-shadow: 4px 4px 0 #546250;
  padding: 4px;
}
.bbh-roster-context-submenu {
  position: static;
  margin-top: 4px;
  box-shadow: none;
  border-width: 1px;
}
.bbh-roster-context-menu button,
.bbh-roster-context-submenu button {
  display: block;
  width: 100%;
  text-align: left;
  margin: 0 0 2px 0;
  padding: 6px 8px;
  border: 1px solid #546250;
  background: #b6c8b5;
  color: #18231b;
  font-weight: 700;
  cursor: pointer;
}
.bbh-roster-context-menu button:hover,
.bbh-roster-context-submenu button:hover { background: #194b36; color: #fff; }

/* Booking payment modal */
.bbh-payment-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 35, 27, .25);
}
.bbh-payment-modal.bbh-hidden { display: none; }
.bbh-payment-modal-card {
  width: min(680px, calc(100vw - 32px));
  background: #ebe7d9;
  border: 2px solid #194b36;
  box-shadow: 6px 6px 0 #546250;
}
.bbh-payment-method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.bbh-payment-method-grid.settings { align-items: center; }
.bbh-payment-processor-box {
  border: 1px solid #546250;
  padding: 10px;
  margin-top: 10px;
  background: #f8f5e9;
}

/* Roster grouped-card pet lines: each pet is its own line, but left-click keeps the full booking card together. */
.bbh-roster-row.starts-card:not(:first-child) {
  border-top: 3px solid #546250;
}
.bbh-roster-context-menu { min-width: 230px; }


/* Payment method editor + inline booking-cart payment controls */
.bbh-payment-static-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 10px; }
.bbh-static-method-pill { display: inline-block; padding: 6px 10px; background: #194b36; color: #fff; border: 2px solid; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); font-weight: 900; }
.bbh-payment-method-editor { display: grid; grid-template-columns: minmax(220px, 1.1fr) minmax(160px, .8fr) 170px 100px auto; gap: 10px; align-items: end; border: 1px solid #546250; background: #f8f5e9; padding: 8px; margin-top: 8px; }
.bbh-inline-check { display: inline-flex; gap: 8px; align-items: center; font-weight: 900; line-height: 1.1; white-space: nowrap; }
.bbh-inline-check input[type="checkbox"] { width: auto; min-width: 18px; flex: 0 0 auto; }
.bbh-inline-check span { display: inline-block; }
.payment-method-actions { justify-content: flex-end; white-space: nowrap; }
.bbh-cart-payment-panel { margin: 8px; padding: 8px; border: 2px solid #546250; background: #f8f5e9; }
.bbh-cart-payment-scope { font-weight: 900; color: #194b36; margin-bottom: 6px; }
.bbh-cart-payment-terminal-line { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: end; margin-bottom: 8px; }
.bbh-cart-payment-cash-line, .bbh-cart-payment-check-line { display: grid; grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) auto; gap: 8px; align-items: end; margin-bottom: 8px; }
.bbh-cart-payment-cash-line input, .bbh-cart-payment-check-line input { width: 100%; }
.bbh-cart-payment-terminal-line label { font-weight: 900; }
.bbh-cart-payment-terminal-line select { display: block; width: 100%; margin-top: 3px; }
.bbh-cart-payment-methods { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 900px) { .bbh-payment-method-editor, .bbh-cart-payment-terminal-line, .bbh-cart-payment-cash-line, .bbh-cart-payment-check-line { grid-template-columns: 1fr; } }

.bbh-terminal-payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 28, 22, 0.45);
}
.bbh-terminal-payment-overlay.bbh-hidden { display: none; }
.bbh-terminal-payment-dialog {
  width: min(520px, calc(100vw - 40px));
  border: 3px solid var(--bbh-green, #17452f);
  background: var(--bbh-cream, #f4f1e4);
  box-shadow: 8px 8px 0 rgba(23, 69, 47, 0.65);
  padding: 18px;
  text-align: center;
}
.bbh-terminal-payment-dialog h3 {
  margin: 0 0 8px;
  color: var(--bbh-green, #17452f);
}
.bbh-terminal-payment-dialog p {
  margin: 0 0 12px;
}
.bbh-terminal-payment-amount {
  display: inline-block;
  margin: 6px auto 12px;
  padding: 8px 18px;
  border: 2px solid var(--bbh-green, #17452f);
  background: #fff9c8;
  font-size: 1.35rem;
  font-weight: 800;
}
.bbh-terminal-payment-message {
  min-height: 1.5rem;
  margin: 8px 0 14px;
  font-weight: 700;
}
.bbh-buttonrow.centered {
  justify-content: center;
}

/* Packages & Membership creator */
.bbh-pm-shell { display: grid; gap: 18px; }
.bbh-subpanel { border: 2px solid var(--bbh-green, #204b37); background: rgba(255,255,255,0.28); padding: 12px; }
.bbh-subpanel-title, .bbh-mini-title { font-weight: 800; color: var(--bbh-green, #17422f); margin: 8px 0; }
.bbh-mini-title { font-size: 1.05rem; }
.bbh-pm-line { border: 1px solid rgba(30,67,47,.55); background: rgba(255,255,255,.38); padding: 8px; margin: 8px 0; }
.bbh-pm-line-grid { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 8px 12px; align-items: end; }
.bbh-pm-line-grid .wide { grid-column: span 2; }
.bbh-pm-line-grid .bbh-pm-check { align-self: end; justify-self: start; min-width: 0; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 7px; }
.bbh-days-field { display: flex; align-items: center; gap: 6px; }
.bbh-days-field input { max-width: 92px; }
.bbh-days-field span { font-weight: 800; color: #1e432f; }
.bbh-pm-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
@media (max-width: 980px) { .bbh-pm-line-grid { grid-template-columns: 1fr 1fr; } .bbh-pm-line-grid .wide { grid-column: span 2; } }
@media (max-width: 700px) { .bbh-pm-line-grid { grid-template-columns: 1fr; } .bbh-pm-line-grid .wide { grid-column: span 1; } }
.bbh-account-summary-card { border: 2px solid rgba(30,67,47,.65); background: rgba(255,255,255,.35); padding: 12px; min-height: 88px; }
.bbh-account-total { font-size: 1.55rem; font-weight: 900; color: #17422f; margin-top: 6px; }
.bbh-account-total.warning { color: #8a3a28; }

/* Booking commerce panels + Packages/Memberships cleanup */
.bbh-pm-form-active { display: inline-flex; width: auto; max-width: fit-content; align-items: center; gap: 6px; margin: 6px 0 10px; }
.bbh-pm-form-active input { width: auto; }
.bbh-pm-line-grid .bbh-pm-check input { width: auto; flex: 0 0 auto; }
.bbh-pm-line-grid .bbh-pm-check span { display: inline-block; }
.bbh-commerce-panel { border: 2px solid #546250; background: rgba(255,255,255,.35); padding: 12px; margin: 10px 0; }
.bbh-commerce-panel.bbh-hidden { display: none; }
.bbh-commerce-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; margin-bottom: 8px; }
.bbh-commerce-head h3 { margin: 0; color: #2f704d; }
.bbh-commerce-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.bbh-commerce-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bbh-commerce-card { border: 1px solid rgba(30,67,47,.55); background: #f8f5e9; padding: 8px; display: grid; gap: 4px; }
.bbh-commerce-card strong { color: #1e432f; }
.bbh-commerce-card span { font-weight: 900; }
.bbh-commerce-card small { color: #5b6256; font-weight: 700; }
@media (max-width: 900px) { .bbh-commerce-two { grid-template-columns: 1fr; } }
.bbh-commerce-card.is-inactive { opacity: .72; background: #ebe7d9; }
.bbh-commerce-card.is-inactive button { opacity: .55; }

/* Create Booking cart rail: payment center is always visible inside the cart, but it is not sticky to the viewport. */
.bbh-booking-cart-card {
  display: flex;
  flex-direction: column;
  height: 940px;
  max-height: 940px;
  position: static;
}
.bbh-booking-cart-card > .bbh-panel-title {
  flex: 0 0 auto;
}
.bbh-booking-cart-card > [data-booking-cart] {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.bbh-cart-items-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding-bottom: 4px;
}
.bbh-cart-footer {
  flex: 0 0 auto;
  background: var(--bbh-panel);
  border-top: 2px solid var(--bbh-border-dark);
  padding-top: 2px;
  position: static;
}
.bbh-cart-payment-panel.is-disabled {
  opacity: .78;
}
.bbh-cart-payment-panel.is-disabled button,
.bbh-cart-payment-panel.is-disabled select {
  cursor: not-allowed;
}
@media (max-width: 1150px) {
  .bbh-booking-cart-card {
    height: auto;
    max-height: none;
  }
  .bbh-cart-items-scroll {
    max-height: 420px;
  }
}


.bbh-cart-storage-bin {
  display: grid;
  gap: 4px;
  margin: 5px 0;
  padding: 5px 7px;
  border: 1px dashed rgba(75,85,70,.55);
  background: #fffbcf;
  color: var(--bbh-green-dark);
  font-weight: 800;
}
.bbh-cart-storage-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.bbh-cart-storage-bin strong,
.bbh-cart-storage-bin span {
  display: inline;
  margin: 0;
}
.bbh-cart-storage-notes {
  color: var(--bbh-ink);
  font-size: 12px;
  line-height: 1.22;
  font-weight: 700;
  border-top: 1px solid rgba(75,85,70,.25);
  padding-top: 3px;
  white-space: pre-wrap;
}

/* Invoice integrity/A4 print sizing */
.bbh-invoice-page {
  width: 8.27in !important;
  min-height: 11.69in !important;
  max-width: 8.27in !important;
  padding: 0.45in !important;
  box-sizing: border-box !important;
}
.bbh-invoice-meta.compact,
.bbh-invoice-meta { min-width: 0; }
.bbh-invoice-meta div { grid-template-columns: 82px minmax(0, 1fr); }
.bbh-invoice-meta span { word-break: break-word; }
.bbh-payment-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28, 34, 29, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bbh-payment-success-overlay.bbh-hidden { display: none !important; }
.bbh-payment-success-dialog {
  width: min(520px, calc(100vw - 32px));
  background: #fbfaf4;
  border: 4px solid #17442f;
  box-shadow: 12px 12px 0 #41664f;
  padding: 28px;
  text-align: center;
}
.bbh-payment-success-dialog h3 {
  color: #17442f;
  margin: 0 0 12px;
  font-size: 28px;
}
.bbh-payment-success-dialog p { margin: 8px 0 18px; font-size: 18px; }

.bbh-booking-error-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(28, 34, 29, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.bbh-booking-error-overlay.bbh-hidden { display: none !important; }
.bbh-booking-error-dialog {
  width: min(560px, calc(100vw - 32px));
  background: #fbfaf4;
  border: 4px solid #81291e;
  box-shadow: 12px 12px 0 #41664f;
  padding: 24px;
  text-align: left;
}
.bbh-booking-error-dialog h3 {
  margin: 0 0 10px;
  color: #81291e;
  font-size: 24px;
}
.bbh-booking-error-dialog p { margin: 0 0 18px; font-size: 18px; line-height: 1.35; }

@media print {
  @page { size: A4 portrait; margin: 0; }
  .bbh-invoice-page {
    width: 8.27in !important;
    min-height: 11.69in !important;
    max-width: 8.27in !important;
    margin: 0 auto !important;
    padding: 0.45in !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}

/* Super Admin facility management archived visibility */
.bbh-admin-company-card.is-archived,
.bbh-admin-facility-chip.is-archived {
  opacity: .82;
  border-style: dashed;
}

/* Company-level client/pet sharing foundation */
.client-result-home,
.client-home-badge,
.pet-pill-home {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  line-height: 1.2;
  color: #24422f;
  font-weight: 700;
}
.client-result-home {
  margin-top: .15rem;
  color: #f7f4df;
  opacity: .95;
}
.client-home-badge {
  margin-left: .55rem;
  padding: .15rem .55rem;
  border-radius: 999px;
  background: #fffdf2;
  color: #24422f;
  border: 1px solid #cdb278;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
  white-space: nowrap;
}
.pet-pill-home {
  margin-left: .35rem;
  padding: .1rem .38rem;
  border-radius: 999px;
  background: #fffdf2;
  color: #24422f;
  border: 1px solid #cdb278;
  opacity: 1;
}

/* Facility calendar filters should swap panels, not stack both calendars. */
.bbh-calendar-filter-panel { display: none; }
.bbh-calendar-filter-panel.is-active { display: block; }

/* Storage bin controls inside Create Booking. */
.bbh-storage-hook select,
.bbh-storage-hook input[type="file"] {
  width: 100%;
  margin-top: 3px;
}
.bbh-storage-hook .bbh-buttonrow.compact {
  margin-top: 6px;
}

.bbh-weekday-checks { display: flex; flex-wrap: wrap; gap: 6px; }
.bbh-weekday-checks label { display: inline-flex; align-items: center; gap: 4px; background: #fffdf0; border: 1px solid #4a634c; padding: 4px 8px; font-weight: 800; }
.bbh-weekday-checks input { width: auto; }

/* Drop-off ticket button in Booking Cart */
.bbh-cart-ticket-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: stretch;
  padding: 8px 8px 0;
}
.bbh-cart-ticket-row .bbh-btn {
  width: 100%;
}


/* Grooming staff/settings isolation and grooming booking panel */
.bbh-calendar-filter-row-split{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.bbh-calendar-filter-panel{display:none;}
.bbh-calendar-filter-panel.is-active{display:block;}
.bbh-grooming-staff-settings .bbh-two-column{display:grid;grid-template-columns:minmax(420px,0.85fr) minmax(460px,1.15fr);gap:14px;align-items:start;}
.bbh-check-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:8px 14px;margin-top:8px;}
.bbh-check-grid label{display:flex;align-items:center;gap:6px;font-weight:700;}
.bbh-grooming-staff-week{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:8px;}
.bbh-grooming-day{border:1px solid var(--bbh-border);background:var(--bbh-linen);padding:8px;}
.bbh-grooming-selection-panel{padding:10px;background:var(--bbh-linen);border:1px solid var(--bbh-border);}
.bbh-grooming-selection-panel .bbh-form-grid.three { grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 10px; }
.bbh-grooming-selection-panel select { appearance: auto; -webkit-appearance: menulist; min-height: 38px; font-weight: 700; background: var(--bbh-input); }
@media (max-width: 900px) { .bbh-grooming-selection-panel .bbh-form-grid.three { grid-template-columns: 1fr; } }

.bbh-grooming-addon-pills .bbh-push span{font-size:.8em;opacity:.85;margin-left:4px;}
.bbh-grooming-estimate{margin-top:10px;padding:8px;border-top:2px solid var(--bbh-border);display:flex;justify-content:space-between;gap:12px;}
.bbh-calendar-view-buttons{margin-left:8px;}
@media (max-width: 1100px){.bbh-grooming-staff-settings .bbh-two-column{grid-template-columns:1fr;}.bbh-calendar-filter-row-split{align-items:flex-start;}}

/* Grooming staff settings readability refinements */
.bbh-grooming-staff-settings .bbh-two-column {
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
}
.bbh-grooming-staff-settings .bbh-settings-form {
  max-width: none;
}
.bbh-grooming-staff-settings .bbh-subcard.compact {
  padding: 10px;
}
.bbh-check-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}
.bbh-check-grid .bbh-check-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding: 8px 10px;
  min-height: 42px;
  background: #fffdf0;
  border: 1px solid var(--bbh-border);
  box-shadow: inset 2px 2px 0 rgba(255,255,255,.7);
  line-height: 1.15;
  font-weight: 800;
}
.bbh-check-grid .bbh-check-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}
.bbh-check-grid .bbh-check-card span {
  display: block;
  overflow-wrap: anywhere;
}
.bbh-grooming-staff-week {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}
.bbh-grooming-day {
  padding: 10px;
  background: #fffdf0;
  transition: opacity .15s ease, filter .15s ease;
}
.bbh-grooming-day.is-inactive {
  opacity: .62;
  filter: grayscale(.15);
}
.bbh-day-active-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 900;
}
.bbh-day-active-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}
.bbh-grooming-day-times input:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.bbh-mini-summary {
  display: inline-block;
  white-space: nowrap;
}
.bbh-grooming-staff-settings .bbh-table th,
.bbh-grooming-staff-settings .bbh-table td {
  vertical-align: middle;
}
.bbh-grooming-staff-settings .bbh-table th:nth-child(3),
.bbh-grooming-staff-settings .bbh-table td:nth-child(3) {
  width: 170px;
}

/* Grooming booking/calendar refinements */
.bbh-grooming-selection-panel { padding: 0.65rem; }
.bbh-grooming-selection-panel .bbh-form-grid select:disabled { opacity: 0.65; }
.bbh-grooming-estimate { margin-top: 0.65rem; padding: 0.55rem 0.7rem; border: 1px solid var(--bbh-border, #4d614d); background: #fffdf0; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.bbh-calendar-lane-cell-relative { position: relative; overflow: visible; }
.bbh-grooming-appt-block { position: absolute; left: 4px; right: 4px; z-index: 4; border: 1px solid #173d2b; box-shadow: 2px 2px 0 rgba(0,0,0,0.22); padding: 3px 5px; font-size: 0.82rem; line-height: 1.1; overflow: hidden; }
.bbh-grooming-appt-block strong, .bbh-grooming-appt-block span, .bbh-grooming-appt-block small { display: block; }
.bbh-grooming-appt-block small { opacity: 0.9; }

/* Grooming appointment profile phase 1 */
.bbh-modal-overlay[data-grooming-profile-modal] {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.bbh-grooming-profile-modal {
  width: min(980px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: var(--bbh-panel);
  border: 2px solid;
  border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light);
  box-shadow: 5px 5px 0 rgba(0,0,0,.24);
}
.bbh-grooming-profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.bbh-grooming-profile-card {
  background: var(--bbh-panel-light);
  border: 2px solid;
  border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark);
  padding: 9px;
}
.bbh-grooming-profile-card.span-2 { grid-column: 1 / -1; }
.bbh-grooming-profile-card h3, .bbh-grooming-profile-card h4 { margin: 0 0 6px; color: var(--bbh-green-dark); }
.bbh-grooming-profile-subtitle { font-weight: 700; color: var(--bbh-muted); }
.bbh-profile-dl { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 4px 8px; margin: 0; }
.bbh-profile-dl dt { font-weight: 700; color: var(--bbh-green-dark); }
.bbh-profile-dl dd { margin: 0; }
.bbh-empty-workspace.small { min-height: 52px; padding: 8px; }
.bbh-grooming-appt-block { cursor: pointer; }
.bbh-grooming-appt-block:focus { outline: 2px solid var(--bbh-gold); outline-offset: 1px; }
@media (max-width: 760px) { .bbh-grooming-profile-grid { grid-template-columns: 1fr; } }

/* Grooming appointment profile phase 2 */
.bbh-grooming-location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.bbh-grooming-location-buttons .bbh-btn.is-selected {
  background: var(--bbh-green-dark);
  color: #fff;
}
.bbh-grooming-location-pill {
  display: inline-block;
  width: fit-content;
  margin-top: 3px;
  padding: 1px 5px;
  border: 1px solid currentColor;
  background: rgba(255,255,255,.72);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
}
.bbh-grooming-profile-textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
}
.bbh-grooming-profile-save-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bbh-muted.small {
  font-size: 0.85rem;
}

/* Grooming appointment profile phase 4 */
.bbh-grooming-workflow {
  display: grid;
  gap: 8px;
}
.bbh-grooming-status-line {
  font-weight: 700;
  color: var(--bbh-green-dark);
}
.bbh-grooming-workflow-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bbh-grooming-workflow-buttons .bbh-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.bbh-grooming-workflow-times {
  border-top: 1px solid var(--bbh-border-mid);
  padding-top: 7px;
}

/* Grooming Profile Phase 5: Smart Groom timing storage */
.bbh-smart-groom-storage-summary { border: 1px dashed var(--bbh-border); background: var(--bbh-linen); padding: 8px; font-weight: 700; color: var(--bbh-green-dark); }

/* Grooming profile Phase 6: Smart Groom timing history */
.bbh-smart-groom-history-table { margin-top: 10px; }
.bbh-smart-groom-history-table th,
.bbh-smart-groom-history-table td { font-size: 13px; }
.bbh-smart-groom-averages { margin-top: 10px; border: 1px solid var(--bbh-border); background: var(--bbh-cream); padding: 8px; }
.bbh-smart-groom-averages h5 { margin: 0 0 6px; color: var(--bbh-green-dark); font-size: 15px; }
.bbh-smart-groom-average-row { display: grid; grid-template-columns: minmax(160px, 240px) 1fr; gap: 10px; border-top: 1px solid rgba(75, 88, 70, 0.35); padding: 6px 0; }
.bbh-smart-groom-average-row:first-of-type { border-top: 0; }
.bbh-smart-groom-average-row strong { color: var(--bbh-green-dark); }
@media (max-width: 760px) {
  .bbh-smart-groom-average-row { grid-template-columns: 1fr; gap: 2px; }
}

.bbh-smart-groom-booking-note {
  margin-top: 6px;
  padding: 7px 9px;
  border: 1px dashed var(--bbh-line, #8fa083);
  background: rgba(255,255,240,0.55);
  font-size: 0.92rem;
  color: var(--bbh-green, #173f2d);
}
/* Grooming Profile Phase 7 timer repair */
[data-grooming-active-timer] {
  display: inline-block;
  min-width: 64px;
  font-weight: 700;
  color: var(--bbh-green-dark);
}

/* SMS/MMS & Email template settings */
.bbh-message-template-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: 10px; align-items: start; }
.bbh-message-channel-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; align-items: start; }
.bbh-variable-pill-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.bbh-variable-pill { font-size: 13px; padding: 4px 7px; }
.bbh-message-template-form textarea { min-height: 90px; }
.bbh-message-template-active { align-self: end; margin-bottom: 5px; }
@media (max-width: 980px) { .bbh-message-template-layout, .bbh-message-channel-grid { grid-template-columns: 1fr; } }

/* Client Communication module shell */
.bbh-client-communication-module .bbh-panel-body { min-height: 620px; }
.bbh-communication-layout { display: grid; grid-template-columns: minmax(280px, 360px) minmax(520px, 1fr); gap: 8px; min-height: 640px; }
.bbh-communication-threads, .bbh-communication-window { border: 2px solid; border-color: var(--bbh-border-dark) var(--bbh-border-light) var(--bbh-border-light) var(--bbh-border-dark); background: var(--bbh-panel-light); min-width: 0; }
.bbh-communication-tools { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 6px; padding: 8px; border-bottom: 1px solid var(--bbh-border-dark); background: var(--bbh-panel); }
.bbh-communication-tools input { min-width: 0; width: 100%; }
.bbh-communication-search-results { display: flex; flex-direction: column; border-bottom: 1px dashed var(--bbh-border-mid); max-height: 190px; overflow-y: auto; background: #eeeade; }
.bbh-communication-client-result { display: grid; grid-template-columns: 1fr; gap: 2px; width: 100%; text-align: left; border: 0; border-bottom: 1px solid #9f9a8c; background: #f8f5e9; color: var(--bbh-text); padding: 7px 8px; font: inherit; cursor: default; }
.bbh-communication-client-result:hover, .bbh-communication-client-result:focus { outline: 2px solid var(--bbh-green-dark); background: #fffdf2; }
.bbh-communication-client-result strong { color: var(--bbh-green-dark); font-weight: 800; }
.bbh-communication-client-result span { display: block; font-size: 12px; line-height: 1.25; color: var(--bbh-muted); white-space: normal; overflow-wrap: anywhere; }
.bbh-communication-thread-list { display: flex; flex-direction: column; min-height: 220px; }
.bbh-communication-thread { text-align: left; border: 0; border-bottom: 1px solid #9f9a8c; background: var(--bbh-panel-light); padding: 8px; color: var(--bbh-text); cursor: default; font: inherit; }
.bbh-communication-thread.is-selected { background: #dfe7d8; box-shadow: inset 4px 0 0 var(--bbh-green-dark); }
.bbh-communication-thread span { display: block; }
.bbh-communication-thread .thread-name { font-weight: 800; color: var(--bbh-green-dark); }
.bbh-communication-thread .thread-meta { font-size: 12px; color: var(--bbh-muted); margin-top: 2px; }
.bbh-communication-thread .thread-preview { font-size: 13px; margin-top: 6px; }
.bbh-communication-window { display: grid; grid-template-rows: auto minmax(320px, 1fr) auto auto; min-height: 640px; }
.bbh-communication-header { display: flex; justify-content: space-between; gap: 8px; align-items: center; padding: 8px; border-bottom: 1px solid var(--bbh-border-dark); background: var(--bbh-panel); }
.bbh-message-window { padding: 10px; overflow-y: auto; min-height: 360px; background: #ece8dc; }
.bbh-message-bubble { max-width: 72%; margin: 8px 0; padding: 8px 10px; border: 2px solid; line-height: 1.35; }
.bbh-message-bubble.incoming { margin-right: auto; background: var(--bbh-green-sage, #a9bea8); color: #111; border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light); }
.bbh-message-bubble.outgoing { margin-left: auto; background: var(--bbh-green-dark); color: #fff; border-color: var(--bbh-border-light) #0d241a #0d241a var(--bbh-border-light); }
.bbh-message-meta { font-size: 11px; font-weight: 800; opacity: .78; margin-bottom: 4px; }
.bbh-message-media { display: block; max-width: 240px; max-height: 180px; margin-top: 6px; border: 1px solid var(--bbh-border-dark); object-fit: cover; }
.bbh-communication-compose { display: grid; grid-template-columns: 1fr; gap: 7px; padding: 8px; border-top: 1px solid var(--bbh-border-dark); background: var(--bbh-panel); }
.bbh-compose-sender-row { display: grid; grid-template-columns: minmax(180px, 290px) minmax(0, 1fr); gap: 8px; align-items: end; }
.bbh-compose-sender-row label { display: grid; gap: 2px; font-weight: 800; color: var(--bbh-green-dark); }
.bbh-message-preview { border: 2px inset var(--bbh-border-light); background: #f8f5e9; padding: 6px 8px; min-height: 34px; overflow-wrap: anywhere; }
.bbh-compose-main-row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 7px; align-items: stretch; }
.bbh-communication-compose textarea { min-height: 74px; resize: vertical; width: 100%; }
.bbh-camera-btn { min-width: 48px; min-height: 44px; font-size: 18px; align-self: start; }
.bbh-compose-attachment-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 5px 0; color: var(--bbh-green-dark); font-weight: 800; }
.bbh-compose-meta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: 12px; color: var(--bbh-muted); }
.bbh-compose-meta-row [data-cc-char-count] { font-weight: 800; color: var(--bbh-green-dark); }
.bbh-communication-footnote { padding: 7px 8px; font-size: 12px; color: var(--bbh-muted); border-top: 1px dashed var(--bbh-border-mid); }
@media (max-width: 900px) {
  .bbh-communication-layout { grid-template-columns: 1fr; }
  .bbh-communication-threads { min-height: 220px; }
  .bbh-message-bubble { max-width: 90%; }
  .bbh-compose-sender-row, .bbh-compose-main-row { grid-template-columns: 1fr; }
  .bbh-camera-btn { width: 52px; }
}


.bbh-new-message-indicator { margin: 6px auto -2px; display: block; width: max-content; max-width: calc(100% - 16px); border: 2px solid var(--bbh-green-dark); background: #fffdf2; color: var(--bbh-green-dark); font-weight: 800; padding: 5px 10px; cursor: default; z-index: 2; }
.bbh-client-communication-module .bbh-panel-title { display: flex; align-items: center; justify-content: space-between; gap: 8px; }


/* Client Communication thread status, filters, and contained scrolling */
.bbh-communication-layout { height: min(720px, calc(100vh - 205px)); min-height: 520px; }
.bbh-communication-threads { display: grid; grid-template-rows: auto auto auto minmax(0, 1fr); overflow: hidden; }
.bbh-communication-thread-list { min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.bbh-communication-window { min-height: 0; height: 100%; grid-template-rows: auto auto minmax(0, 1fr) auto auto; overflow: hidden; }
.bbh-message-window { min-height: 0; height: auto; overflow-y: auto; overscroll-behavior: contain; }
.bbh-communication-filters { display: flex; flex-wrap: wrap; gap: 5px; padding: 7px 8px; border-bottom: 1px solid var(--bbh-border-dark); background: var(--bbh-panel); }
.bbh-communication-filters .bbh-btn.is-selected { background: var(--bbh-green-dark); color: #fff; }
.bbh-communication-thread .thread-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; }
.bbh-communication-thread .thread-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px; }
.bbh-communication-thread.is-unread .thread-name { font-weight: 900; }
.bbh-communication-thread.needs-reply { box-shadow: inset 4px 0 0 #9b2f25; }
.bbh-cc-status-pill, .bbh-cc-nav-badge { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; min-width: 22px; min-height: 20px; padding: 1px 7px; font-size: 11px; line-height: 1; font-weight: 900; white-space: nowrap; border: 1px solid #651b16; }
.bbh-cc-status-pill.is-alert, .bbh-cc-nav-badge { background: #b43a30; color: #fff; }
.bbh-cc-status-pill.is-neutral { background: #e8eadf; color: var(--bbh-green-dark); border-color: var(--bbh-border-dark); }
.bbh-topnav [data-module-button="client_communication"] { display: inline-flex; align-items: center; gap: 6px; }
.bbh-cc-nav-badge { margin-left: 2px; }
@media (max-width: 900px) {
  .bbh-communication-layout { height: auto; min-height: 0; }
  .bbh-communication-window { height: 650px; }
  .bbh-communication-threads { max-height: 360px; }
}


/* Client Communication composer repair and unread-only badges */
.bbh-communication-layout {
  height: min(700px, calc(100dvh - 255px));
  min-height: 560px;
}
.bbh-communication-window {
  grid-template-rows: auto auto minmax(190px, 1fr) minmax(188px, auto) auto;
}
.bbh-communication-compose {
  min-height: 188px;
  flex-shrink: 0;
  overflow: visible;
}
.bbh-compose-main-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}
.bbh-communication-compose textarea {
  min-height: 96px;
  max-height: 180px;
  resize: vertical;
}
.bbh-compose-actions {
  display: grid;
  grid-template-columns: repeat(2, 48px) minmax(76px, auto);
  gap: 6px;
  align-items: stretch;
}
.bbh-compose-icon-btn {
  min-width: 48px;
  min-height: 48px;
  padding: 6px;
  font-size: 20px;
  line-height: 1;
}
.bbh-compose-send-btn {
  min-width: 76px;
  font-weight: 900;
}
.bbh-emoji-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 7px;
  border: 1px solid var(--bbh-border-dark);
  background: #f8f5e9;
}
.bbh-emoji-picker button {
  min-width: 36px;
  min-height: 34px;
  border: 1px solid var(--bbh-border-dark);
  background: var(--bbh-panel-light);
  font-size: 19px;
  cursor: default;
}
.bbh-cc-status-pill.is-needs-reply {
  background: #b43a30;
  color: #fff;
  border-color: #651b16;
  min-height: 22px;
  padding: 2px 9px;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
}
.bbh-cc-status-pill.is-alert {
  min-width: 24px;
  min-height: 22px;
  padding: 2px 8px;
  line-height: 18px;
  text-align: center;
}
@media (max-width: 900px) {
  .bbh-communication-layout { height: auto; min-height: 0; }
  .bbh-communication-window { height: 680px; grid-template-rows: auto auto minmax(180px, 1fr) auto auto; }
  .bbh-compose-main-row { grid-template-columns: 1fr; }
  .bbh-compose-actions { grid-template-columns: 48px 48px minmax(90px, 1fr); }
}

/* Client Communication tall conversation, encoding counter, and floating emoji picker */
.bbh-client-communication-module .bbh-panel-body {
  overflow: visible;
}
.bbh-client-communication-module .bbh-communication-layout {
  height: calc(100dvh - 170px);
  min-height: 760px;
  max-height: none;
}
.bbh-client-communication-module .bbh-communication-window {
  grid-template-rows: auto auto minmax(430px, 1fr) auto auto;
  min-height: 0;
}
.bbh-client-communication-module .bbh-message-window {
  min-height: 430px;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.bbh-client-communication-module .bbh-communication-compose {
  position: relative;
  min-height: 224px;
  overflow: visible;
  padding-bottom: 10px;
}
.bbh-client-communication-module .bbh-compose-main-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}
.bbh-client-communication-module .bbh-communication-compose textarea {
  min-height: 132px;
  height: 132px;
  max-height: 240px;
  resize: vertical;
  font: inherit;
}
.bbh-client-communication-module .bbh-compose-actions {
  grid-template-columns: 54px 54px minmax(82px, auto);
  gap: 7px;
}
.bbh-client-communication-module .bbh-compose-icon-btn {
  min-width: 54px;
  min-height: 54px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 21px;
}
.bbh-client-communication-module .bbh-compose-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  min-height: 34px;
  line-height: 1.25;
}
.bbh-client-communication-module [data-cc-char-count] {
  font-weight: 900;
  color: var(--bbh-green-dark);
  white-space: nowrap;
}
.bbh-client-communication-module .bbh-emoji-picker {
  position: absolute;
  right: 92px;
  bottom: 184px;
  z-index: 50;
  width: min(330px, calc(100% - 24px));
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  gap: 7px;
  padding: 10px;
  border: 2px solid var(--bbh-border-dark);
  background: #fffdf2;
  box-shadow: 4px 4px 0 rgba(37, 61, 45, 0.22);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.bbh-client-communication-module .bbh-emoji-picker.bbh-hidden {
  display: none !important;
}
.bbh-client-communication-module .bbh-emoji-picker button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 40px;
  padding: 4px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 900px) {
  .bbh-client-communication-module .bbh-communication-layout {
    height: auto;
    min-height: 0;
  }
  .bbh-client-communication-module .bbh-communication-window {
    height: 820px;
    grid-template-rows: auto auto minmax(420px, 1fr) auto auto;
  }
  .bbh-client-communication-module .bbh-message-window {
    min-height: 420px;
  }
  .bbh-client-communication-module .bbh-compose-main-row {
    grid-template-columns: 1fr;
  }
  .bbh-client-communication-module .bbh-compose-actions {
    grid-template-columns: 54px 54px minmax(100px, 1fr);
  }
  .bbh-client-communication-module .bbh-emoji-picker {
    right: 10px;
    bottom: 188px;
  }
}

/* Client Communication desktop composer action stack — SaaS(13) baseline */
@media (min-width: 901px) {
  .bbh-client-communication-module .bbh-compose-main-row {
    grid-template-columns: minmax(0, 1fr) 96px;
    align-items: start;
  }

  .bbh-client-communication-module .bbh-compose-actions {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 40px 40px 40px;
    gap: 6px;
    width: 96px;
    height: 132px;
    align-content: start;
  }

  .bbh-client-communication-module .bbh-compose-icon-btn,
  .bbh-client-communication-module .bbh-compose-send-btn {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 40px;
    padding: 5px 8px;
    align-self: start;
  }

  .bbh-client-communication-module .bbh-compose-icon-btn {
    font-size: 19px;
    line-height: 1;
  }

  .bbh-client-communication-module .bbh-compose-send-btn {
    font-size: 16px;
  }

  .bbh-client-communication-module .bbh-emoji-picker {
    right: 106px;
    bottom: 184px;
  }
}


/* Client Communication thread archive and pet-name refinements */
.bbh-communication-thread-note {
  padding: 4px 8px 6px;
  font-size: 11px;
  color: var(--bbh-muted);
  background: var(--bbh-panel);
  border-bottom: 1px dashed var(--bbh-border-mid);
}
.bbh-communication-thread .thread-pets {
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.2;
  color: var(--bbh-muted);
}
.bbh-cc-context-menu {
  position: fixed;
  z-index: 10050;
  min-width: 170px;
  padding: 4px;
  background: var(--bbh-panel-light);
  border: 2px solid;
  border-color: var(--bbh-border-light) var(--bbh-border-dark) var(--bbh-border-dark) var(--bbh-border-light);
  box-shadow: 2px 2px 0 rgba(0,0,0,.28);
}
.bbh-cc-context-menu button {
  display: block;
  width: 100%;
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: var(--bbh-text);
  text-align: left;
  font: inherit;
  cursor: default;
}
.bbh-cc-context-menu button:hover,
.bbh-cc-context-menu button:focus {
  background: var(--bbh-green-dark);
  color: #fff;
  outline: none;
}

/* Client Communication archive filter row + slightly narrower conversation pane */
@media (min-width: 901px) {
  .bbh-client-communication-module .bbh-communication-layout {
    grid-template-columns: minmax(400px, 430px) minmax(500px, 1fr);
  }

  .bbh-client-communication-module .bbh-communication-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
  }

  .bbh-client-communication-module .bbh-communication-filters .bbh-btn.small {
    min-width: 0;
    padding-left: 9px;
    padding-right: 9px;
    white-space: nowrap;
  }
}

/* Digital Roster dedicated page */
.bbh-roster-titlebar,.bbh-digital-roster-page-title{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:nowrap;min-width:0}
.bbh-roster-date-tools{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:nowrap;white-space:nowrap;min-width:0;overflow-x:auto;overflow-y:hidden}
.bbh-roster-date-tools input[type="date"]{min-height:36px;font-weight:700;padding:4px 8px;width:150px;min-width:150px;flex:0 0 150px}
.bbh-roster-row{display:flex;align-items:center;justify-content:space-between;gap:8px}
.bbh-roster-status-tag{display:inline-flex;align-items:center;justify-content:center;min-height:28px;padding:3px 9px;border:1px solid #465448;border-radius:2px;font-size:.82rem;font-weight:800;line-height:1.05;white-space:nowrap}
.bbh-roster-status-tag.scheduled{background:#fff6c9;color:#20261f}.bbh-roster-status-tag.checked_in{background:#194b36;color:#fff}.bbh-roster-status-tag.checked_out{background:#d5d5d0;color:#242824}
.bbh-digital-roster-page .bbh-panel-body{padding:12px}.bbh-digital-roster-note{margin:0 0 12px}
.bbh-digital-roster-category{margin:0 0 18px;border:1px solid #566456}.bbh-digital-roster-category>.bbh-panel-title{font-size:1.05rem}
.bbh-digital-roster-table-wrap{overflow-x:auto}.bbh-digital-roster-table{width:100%;border-collapse:collapse;table-layout:auto;background:#f8f6ec}
.bbh-digital-roster-table th,.bbh-digital-roster-table td{border:1px solid #687268;padding:7px;vertical-align:middle}.bbh-digital-roster-table th{background:#50735a;color:#fff;text-align:left}
.bbh-digital-roster-table th:nth-last-child(-n+3),.bbh-digital-roster-table td:nth-last-child(-n+3){min-width:130px}
.bbh-digital-check-wrap{display:grid;gap:3px}.bbh-digital-check-wrap input{width:100%;min-width:72px;height:36px;text-align:center;font-weight:800;text-transform:uppercase}.bbh-digital-check-wrap small{min-height:1em;font-size:.68rem;color:#4d574e}
.bbh-digital-roster-empty{padding:16px;background:#efede3;color:#596159}
@media(max-width:800px){.bbh-roster-titlebar,.bbh-digital-roster-page-title{align-items:center;flex-wrap:nowrap}.bbh-roster-date-tools{justify-content:flex-start;overflow-x:auto;max-width:100%}.bbh-digital-roster-table{min-width:980px}}

/* Digital Roster quick daycare check-in */
.bbh-digital-roster-category-title{display:flex;align-items:center;justify-content:space-between;gap:10px}
.bbh-quick-checkin-modal{width:min(620px,calc(100vw - 28px))}
.bbh-quick-checkin-modal .bbh-modal-body{display:grid;gap:12px}
.bbh-quick-checkin-modal input[type="search"]{width:100%;margin-top:4px}
.bbh-quick-checkin-results{max-height:220px;overflow:auto;border:1px solid #6b756b;background:#f6f3e8}
.bbh-quick-client-result{display:grid;grid-template-columns:1fr auto;gap:2px 10px;width:100%;padding:9px 10px;border:0;border-bottom:1px solid #a7aea4;background:#f6f3e8;text-align:left;color:#173f2e;cursor:pointer}
.bbh-quick-client-result:hover,.bbh-quick-client-result:focus{background:#dbe6d6;outline:2px solid #173f2e;outline-offset:-2px}
.bbh-quick-client-result small{color:#555}.bbh-quick-client-result span{grid-column:1/-1;font-size:.82rem;color:#5c655c}
.bbh-quick-checkin-pets{border:1px solid #687268;background:#eeece2;padding:10px;display:grid;gap:7px}
.bbh-quick-client-selected{display:flex;justify-content:space-between;gap:10px;align-items:center;border-bottom:1px solid #9aa198;padding-bottom:7px;margin-bottom:2px}
.bbh-quick-pet-choice{display:flex;align-items:center;gap:9px;font-weight:700;padding:7px;background:#fffdf5;border:1px solid #9da49b}
.bbh-quick-pet-choice input{width:20px;height:20px}
@media(max-width:600px){.bbh-quick-client-selected{align-items:flex-start;flex-direction:column}.bbh-quick-client-result{grid-template-columns:1fr}}

/* Digital Roster compact inline daycare quick check-in */
.bbh-quick-checkin-inline{display:grid;grid-template-columns:auto minmax(170px,260px) auto minmax(180px,1fr) auto;align-items:center;gap:8px;padding:8px;border-top:1px solid #687268;background:#e5e2d7;position:relative}
.bbh-quick-checkin-label{white-space:nowrap;color:#173f2e}
.bbh-quick-search-wrap{position:relative;min-width:0}
.bbh-quick-search-wrap input[type="search"]{width:100%;height:36px;margin:0}
.bbh-quick-checkin-results{position:absolute;left:0;right:0;top:calc(100% + 2px);z-index:40;max-height:220px;overflow:auto;border:1px solid #536153;background:#f6f3e8;box-shadow:3px 3px 0 rgba(0,0,0,.18)}
.bbh-quick-result-empty{padding:9px;color:#596159}
.bbh-quick-selected-summary{white-space:nowrap;min-width:0;overflow:hidden;text-overflow:ellipsis}
.bbh-quick-checkin-pets-inline{display:flex;align-items:center;gap:6px;min-width:0;overflow-x:auto;padding:1px 0}
.bbh-quick-pet-choice-inline{display:inline-flex;align-items:center;gap:5px;white-space:nowrap;padding:5px 7px;background:#fffdf5;border:1px solid #9da49b;font-weight:700}
.bbh-quick-pet-choice-inline input{width:17px;height:17px;margin:0}
.bbh-quick-checkin-inline>[data-quick-checkin-submit]{white-space:nowrap;height:36px}
@media(max-width:1000px){.bbh-quick-checkin-inline{grid-template-columns:auto minmax(150px,1fr) auto}.bbh-quick-selected-summary{display:none}.bbh-quick-checkin-pets-inline{grid-column:1/3}.bbh-quick-checkin-inline>[data-quick-checkin-submit]{grid-column:3;grid-row:1/3;height:100%}}
@media(max-width:620px){.bbh-quick-checkin-inline{grid-template-columns:1fr auto}.bbh-quick-checkin-label{grid-column:1/-1}.bbh-quick-search-wrap{grid-column:1/-1}.bbh-quick-checkin-pets-inline{grid-column:1}.bbh-quick-checkin-inline>[data-quick-checkin-submit]{grid-column:2;grid-row:auto;height:36px}}

/* Invoice-first payment hub */
.bbh-cart-invoice-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:8px}
.bbh-invoice-payment-hub{margin-top:18px;border:2px solid var(--bbh-border,#4f5d4f);background:#e9e7dc;padding:10px}
.bbh-invoice-payment-summary{display:grid;grid-template-columns:repeat(4,minmax(120px,1fr));gap:8px;margin:8px 0}
.bbh-invoice-payment-summary>div{display:flex;justify-content:space-between;gap:12px;border:1px solid #8c9688;background:#fbfaf4;padding:9px}
.bbh-invoice-payment-summary .warning{background:#fff5c9}
.bbh-invoice-payment-entry{display:grid;grid-template-columns:minmax(180px,260px) minmax(220px,1fr);gap:10px;align-items:end}
.bbh-invoice-payment-entry label{font-weight:700}.bbh-invoice-payment-entry input{display:block;width:100%;box-sizing:border-box}
.bbh-invoice-payment-methods{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0}
.bbh-invoice-payment-methods .is-selected{background:#173f2f;color:#fff}
.bbh-invoice-payment-activity{margin-top:12px}.bbh-invoice-payment-activity h3{margin:0 0 6px}
.bbh-invoice-totals .due{background:#fff5c9}.bbh-invoice-totals .credit{background:#f3d0c8}
@media(max-width:760px){.bbh-invoice-payment-summary{grid-template-columns:1fr 1fr}.bbh-invoice-payment-entry{grid-template-columns:1fr}.bbh-cart-invoice-actions{grid-template-columns:1fr}}

/* Training settings and staff */
.bbh-training-settings-layout{align-items:start;}
.bbh-training-settings-layout .bbh-subpanel{min-width:0;}
[data-training-staff-root] .bbh-two-column{display:grid;grid-template-columns:minmax(420px,.9fr) minmax(460px,1.1fr);gap:14px;align-items:start;}
@media (max-width:1100px){[data-training-staff-root] .bbh-two-column,.bbh-training-settings-layout{grid-template-columns:1fr;}}


/* Training calendar appointment cards */
.bbh-training-calendar-block {
  position: absolute;
  left: 4px;
  right: 4px;
  z-index: 4;
  box-sizing: border-box;
  overflow: hidden;
  padding: 4px 6px;
  border: 1px solid #173d2b;
  background: #9eb29a;
  color: #132017;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.22);
  font-size: 0.82rem;
  line-height: 1.15;
}
.bbh-training-calendar-block strong,
.bbh-training-calendar-block span,
.bbh-training-calendar-block small {
  display: block;
}
.bbh-training-calendar-block small {
  opacity: 0.9;
}
.bbh-training-calendar-block.is-lock {
  border-style: double;
}

/* Care Cards — SaaS(28) */
.bbh-care-cards-titlebar,.bbh-roster-card-title{display:flex;align-items:center;justify-content:space-between;gap:8px}.bbh-care-card-toolbar{display:flex;align-items:center;gap:8px}.bbh-care-cards-list{display:grid;gap:14px;margin-top:12px}.bbh-care-card{border:2px solid var(--bbh-dark-green,#1d4937);background:#f7f4e9}.bbh-care-card-banner{display:grid;grid-template-columns:minmax(260px,2fr) minmax(140px,1fr) minmax(260px,2fr);align-items:center;gap:12px;padding:10px 12px;background:#F9D71C;color:#000}.bbh-care-card.is-boarding .bbh-care-card-banner{background:#020035;color:#fff}.bbh-care-card-pet{display:flex;align-items:center;gap:10px}.bbh-care-card-pet img{width:74px;height:74px;object-fit:cover;border:2px solid currentColor;background:#fff}.bbh-care-card-pet strong{display:block;font-size:21px}.bbh-care-card-pet span{display:block}.bbh-care-card-service{text-align:center;font-size:26px;font-weight:900;letter-spacing:1.5px}.bbh-care-card-meta{text-align:right;line-height:1.45}.bbh-care-card-actions{padding:8px 10px;text-align:right}.bbh-care-card section{padding:0 10px 10px}.bbh-care-section-title{padding:6px 9px;font-weight:900;background:#ded7c3;border:1px solid #5a6256}.bbh-care-section-title.is-medication{background:#9e2018;color:#fff}.bbh-care-task-grid{display:grid;grid-template-columns:minmax(220px,28%) 1fr;border-left:1px solid #777;border-top:1px solid #777}.bbh-care-task-label,.bbh-care-task-days{border-right:1px solid #777;border-bottom:1px solid #777;padding:7px}.bbh-care-task-label span,.bbh-care-task-label small{display:block;margin-top:3px}.bbh-care-task-days{display:grid;grid-template-columns:repeat(7,minmax(90px,1fr));gap:5px}.bbh-care-task-check{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:44px;border:1px solid #9a9a8d;background:#fffdf5;text-align:center;color:inherit;font:inherit;cursor:pointer;padding:4px}.bbh-care-task-check.is-complete{background:#aac0a6}.bbh-care-task-check strong{font-size:15px}.bbh-care-task-check small{font-size:9px;line-height:1.15}.bbh-care-card-empty{padding:12px;border:1px solid #777;border-top:0}.bbh-placeholder-card{padding:18px;border:2px inset #fff;background:#ebe8dd}.bbh-roster-card-title .bbh-btn{font-size:11px;padding:3px 7px;white-space:nowrap}
@media(max-width:900px){.bbh-care-card-banner{grid-template-columns:1fr}.bbh-care-card-service,.bbh-care-card-meta{text-align:left}.bbh-care-task-grid{grid-template-columns:1fr}.bbh-care-task-days{grid-template-columns:repeat(2,1fr)}.bbh-care-card-toolbar{flex-wrap:wrap}}


/* Integrated Storage Bin & Belongings workflow. */
.bbh-belongings-integrated { margin-top: 10px; border-top: 2px solid var(--bbh-border); padding-top: 9px; }
.bbh-belongings-quickadd { display: flex; flex-wrap: wrap; gap: 5px; margin: 6px 0 8px; }
.bbh-belongings-quickadd .bbh-btn { padding: 5px 8px; }
.bbh-belongings-rows { display: grid; gap: 6px; }
.bbh-belonging-row { display: grid; grid-template-columns: minmax(120px, .8fr) 72px minmax(220px, 2fr) auto; gap: 7px; align-items: center; }
.bbh-belonging-row select, .bbh-belonging-row input { width: 100%; min-height: 34px; }
.bbh-belongings-footer { display: grid; grid-template-columns: minmax(130px, 220px) auto; gap: 8px; align-items: end; margin-top: 8px; }
.bbh-belongings-empty { border: 1px dashed #9dad92; padding: 8px; background: #fffdf2; }
@media (max-width: 850px) {
  .bbh-belonging-row { grid-template-columns: 1fr 70px; }
  .bbh-belonging-row [data-belonging-desc] { grid-column: 1 / -1; }
  .bbh-belonging-row [data-belonging-remove] { grid-column: 1 / -1; }
}


/* SaaS32 Storage Bin & Belongings refinement: prioritize checklist width and keep row actions visible. */
.bbh-booking-storage-layout { grid-template-columns: minmax(480px, 1.35fr) minmax(210px, .65fr); }
.bbh-storage-photo-panel { min-width: 0; }
.bbh-belonging-row { grid-template-columns: minmax(108px, .75fr) 64px minmax(180px, 1.7fr) minmax(78px, auto); }
.bbh-belonging-row [data-belonging-remove] { width: 100%; min-width: 78px; padding-left: 8px; padding-right: 8px; white-space: nowrap; overflow: visible; }
.bbh-cart-belongings { margin-top: 6px; padding-top: 6px; border-top: 1px dashed #aaa77c; line-height: 1.35; }
.bbh-cart-belongings strong { margin-bottom: 3px; }
@media (max-width: 1100px) {
  .bbh-booking-storage-layout { grid-template-columns: minmax(420px, 1.2fr) minmax(190px, .8fr); }
}
@media (max-width: 1000px) {
  .bbh-booking-storage-layout { grid-template-columns: 1fr; }
}

/* Booking financial status badges */
.bbh-booking-status{display:inline-block;padding:3px 8px;border:1px solid #314536;font-weight:700;line-height:1.1}
.bbh-booking-status.paid{background:#9fd18b;color:#102317}
.bbh-booking-status.booked{background:#fff3a6;color:#241f0a}
.bbh-booking-status.unpaid{background:#f2c477;color:#2d1b00}
.bbh-booking-status.partially-paid{background:#e6a15d;color:#2d1600}
.bbh-booking-status.on-account{background:#d9867a;color:#2d0905}
