:root {
  /* Bucovina contemporary palette */
  --wood: #8b5a2b;
  --wood-light: #a97844;
  --forest: #2e4b3f;
  --forest-dark: #22382f;
  --forest-soft: #e7efea;
  --cream: #faf7f1;
  --cream-deep: #f3ecdf;
  --terracotta: #b4552d;
  --terracotta-soft: #f6e3d9;
  --ink: #26312c;
  --muted: #7c857f;
  --line: #e6ddd0;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(43, 55, 48, 0.10);
  --shadow-sm: 0 3px 12px rgba(43, 55, 48, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); }
.btn-danger {
  background: var(--terracotta);
  color: #fff;
}
.btn-danger:hover { background: #963f1e; }
.btn-block { width: 100%; margin-top: 6px; }
.btn-sm { padding: 6px 12px; font-size: 0.82rem; }

/* ---------- Login ---------- */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(180,85,45,0.10), transparent 60%),
    radial-gradient(1000px 500px at 10% 110%, rgba(46,75,63,0.12), transparent 55%),
    var(--cream);
  padding: 24px;
}
.login-card {
  width: 100%;
  max-width: 400px;
  padding: 40px 36px;
}
.brand { text-align: center; margin-bottom: 26px; }
.brand-dot {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 6px var(--terracotta-soft);
  margin-bottom: 14px;
}
.brand-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--forest-dark);
  letter-spacing: -0.5px;
}
.brand-accent { color: var(--terracotta); }
.brand-sub { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }
.brand-sm { display: flex; align-items: center; gap: 10px; margin-bottom: 0; }
.brand-sm .brand-dot { width: 10px; height: 10px; margin-bottom: 0; box-shadow: 0 0 0 4px var(--terracotta-soft); }
.brand-sm .brand-title { font-size: 1.15rem; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(46,75,63,0.12);
}
.form-error {
  color: var(--terracotta);
  font-size: 0.85rem;
  margin: 10px 0;
  background: var(--terracotta-soft);
  padding: 9px 12px;
  border-radius: 8px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: rgba(250,247,241,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rate-pill {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  background: var(--forest-soft);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #d4e2da;
}
.lang-toggle {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.lang-toggle button {
  padding: 7px 14px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.lang-toggle button.active {
  background: var(--forest);
  color: #fff;
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 28px 20px 60px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

/* ---------- Structure selector ---------- */
.struct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.struct-card {
  padding: 26px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.struct-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--wood), var(--terracotta));
  opacity: 0;
  transition: opacity 0.2s;
}
.struct-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.struct-card.active { border-color: var(--forest); box-shadow: var(--shadow); }
.struct-card.active::before { opacity: 1; }
.struct-card .sc-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest-dark); }
.struct-card .sc-meta { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }
.struct-card .sc-check {
  position: absolute;
  top: 18px; right: 18px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest-soft);
  border: 2px solid #cddbd3;
  display: grid; place-items: center;
  color: transparent;
  font-size: 0.8rem;
}
.struct-card.active .sc-check { background: var(--forest); border-color: var(--forest); color: #fff; }

/* ---------- Overview ---------- */
.overview { padding: 24px 26px; margin-bottom: 28px; }
.overview-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.ov-item { background: var(--cream-deep); border-radius: 12px; padding: 16px; text-align: center; }
.ov-item .ov-num { font-size: 1.7rem; font-weight: 700; color: var(--forest-dark); }
.ov-item .ov-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; margin-top: 4px; }
.ov-item.ov-free .ov-num { color: var(--forest); }
.ov-item.ov-occ .ov-num { color: var(--terracotta); }

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 24px;
}
.tab {
  padding: 12px 20px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
}
.tab.active { color: var(--forest-dark); border-bottom-color: var(--terracotta); }

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Rooms ---------- */
.rooms-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.rooms-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest-dark); }

.room-card {
  padding: 22px 24px;
  margin-bottom: 16px;
}
.room-card .rc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; flex-wrap: wrap; gap: 10px;
}
.room-card .rc-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest-dark); }
.room-card .rc-id { color: var(--muted); font-size: 0.8rem; }

.price-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.price-box { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.price-box .pb-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.price-box .pb-label input[type=checkbox] { accent-color: var(--forest); width: 16px; height: 16px; cursor: pointer; }
.price-box.disabled { opacity: 0.55; }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs .pc { position: relative; flex: 1; }
.price-inputs input { padding: 9px 40px 9px 10px; }
.price-inputs .pc .cur { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.conv { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }
.conv b { color: var(--forest); }
.rc-foot { margin-top: 16px; display: flex; justify-content: flex-end; }
.rc-save {
  background: var(--forest); color: #fff; border: none;
  padding: 9px 18px; border-radius: 10px; font-weight: 600; cursor: pointer; font-size: 0.88rem;
  transition: background 0.15s;
}
.rc-save:hover { background: var(--forest-dark); }

/* ---------- Meal flags panel ---------- */
.meal-panel { padding: 18px 20px; margin-bottom: 16px; }
.meal-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.meal-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-dark); }
.meal-hint { font-size: 0.8rem; color: var(--muted); }
.meal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 14px;
  align-items: center;
}
.meal-room-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; color: var(--muted); }
.meal-col-label { text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--forest); }
.meal-room-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.meal-check {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.meal-check input { display: none; }
.meal-box {
  width: 26px; height: 26px;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: var(--cream);
  position: relative;
  transition: all 0.15s;
}
.meal-check input:checked + .meal-box {
  background: var(--forest);
  border-color: var(--forest);
}
.meal-check input:checked + .meal-box::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.meal-check:hover .meal-box { border-color: var(--forest); }
@media (max-width: 640px) {
  .meal-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4px 8px; }
  .meal-col-label { font-size: 0.7rem; }
}

/* ---------- Calendar ---------- */
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.cal-nav { display: flex; align-items: center; gap: 6px; }
.cal-btn { font-size: 1rem; padding: 7px 13px; }
.cal-views { display: flex; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.cal-view { padding: 7px 14px; border: none; background: transparent; font-weight: 600; font-size: 0.83rem; color: var(--muted); cursor: pointer; }
.cal-view.active { background: var(--forest); color: #fff; }
.cal-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest-dark); }
.cal-legend { display: flex; gap: 18px; margin-bottom: 12px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted); }
.legend-swatch { width: 14px; height: 14px; border-radius: 4px; }
.legend-swatch.free { background: var(--forest-soft); border: 1px solid #cddbd3; }
.legend-swatch.occ { background: var(--terracotta); }
.legend-swatch.sel { background: var(--forest); }
.cal-scroll { overflow-x: auto; }

/* Month view */
.cal-matrix { min-width: 820px; display: inline-grid; }
.cm-head { display: grid; grid-template-columns: 90px repeat(var(--cm-cols, 31), var(--cm-colw, 28px)); gap: 3px; margin-bottom: 3px; }
.cm-head .cm-h { text-align: center; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--muted); padding: 6px; }
.cm-h .cm-dn { display: block; font-weight: 500; text-transform: lowercase; }
.cm-h .cm-dd { font-weight: 700; }
.cm-head .cm-h-rooms { display: flex; align-items: flex-end; justify-content: flex-end; padding-right: 8px; font-size: 0.72rem; color: var(--muted); }
.cm-row { display: grid; grid-template-columns: 90px repeat(var(--cm-cols, 31), var(--cm-colw, 28px)); gap: 3px; margin-bottom: 3px; }
.cm-room { font-size: 0.72rem; font-weight: 600; color: var(--forest-dark); display: flex; align-items: center; padding-right: 6px; white-space: nowrap; overflow: hidden; }
.cm-cell {
  min-height: 30px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--forest-soft);
  cursor: pointer;
  position: relative;
  transition: all 0.12s;
}
.cm-cell:hover { box-shadow: inset 0 0 0 2px rgba(46,75,63,0.3); }
.cm-cell.occ { background: var(--terracotta); border-color: var(--terracotta); }
.cm-cell.transition { background: #a61b1b; border-color: #a61b1b; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7); }
.cm-cell.transition::after {
  content: '⇄';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 700;
}
.cm-cell.conflict { background: #c0392b; border-color: #c0392b; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6); }
.cm-cell.conflict::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.22) 0 4px, transparent 4px 8px);
}
.cm-cell.occ::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.18) 0 4px, transparent 4px 8px);
}
.cm-cell.sel { background: var(--forest); border-color: var(--forest); }
.cm-cell.outside { background: #f1ece2; border-color: #efe8da; }
.cm-date-label { font-size: 0.62rem; color: var(--muted); position: absolute; top: 2px; left: 4px; font-weight: 600; }
.cm-cell.sel .cm-date-label, .cm-cell.occ .cm-date-label { color: rgba(255,255,255,0.9); }

/* Week view */
.cal-week { min-width: 820px; }
.cw-head { display: grid; grid-template-columns: 110px repeat(7, 1fr); gap: 3px; margin-bottom: 3px; }
.cw-head .cw-h { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--muted); padding: 6px; }
.cw-head .cw-h b { display: block; font-size: 1rem; color: var(--forest-dark); }
.cw-row { display: grid; grid-template-columns: 110px repeat(7, 1fr); gap: 3px; margin-bottom: 3px; }
.cw-room { font-size: 0.72rem; font-weight: 600; color: var(--forest-dark); display: flex; align-items: center; padding-right: 8px; }
.cw-cell { min-height: 34px; border-radius: 6px; border: 1px solid var(--line); background: var(--forest-soft); cursor: pointer; transition: all 0.12s; }
.cw-cell:hover { box-shadow: inset 0 0 0 2px rgba(46,75,63,0.3); }
.cw-cell.occ { background: var(--terracotta); border-color: var(--terracotta); }
.cw-cell.transition { background: #a61b1b; border-color: #a61b1b; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7); }
.cw-cell.conflict { background: #c0392b; border-color: #c0392b; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6); }
.cw-cell.sel { background: var(--forest); border-color: var(--forest); }

/* Day view */
.cal-day { min-width: 700px; }
.cd-row { display: grid; grid-template-columns: 170px 1fr; gap: 8px; margin-bottom: 8px; align-items: center; }
.cd-room { font-size: 0.85rem; font-weight: 600; color: var(--forest-dark); }
.cd-status {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--forest-soft);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.12s;
}
.cd-status:hover { box-shadow: inset 0 0 0 2px rgba(46,75,63,0.25); }
.cd-status.occ { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.cd-status.transition { background: #a61b1b; color: #fff; border-color: #a61b1b; }
.cd-status.conflict { background: #c0392b; color: #fff; border-color: #c0392b; }
.conflict-tag { font-weight: 700; color: #ffe9e6; }
.cd-status.sel { background: var(--forest); color: #fff; border-color: var(--forest); }
.cd-guest { font-weight: 600; }
.cd-meta { font-size: 0.78rem; opacity: 0.85; }

/* ---------- Booking panel ---------- */
.booking-panel { padding: 24px 26px; margin-top: 20px; }
.bp-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--forest-dark); margin-bottom: 18px; }
.bp-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.bp-form .field { margin-bottom: 0; }
.bp-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bp-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.bp-price-summary {
  margin-top: 14px;
  background: var(--cream-deep);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
}
.bp-price-summary .bps-line { display: flex; justify-content: space-between; margin-bottom: 4px; }
.bp-price-summary .bps-total { font-weight: 700; color: var(--forest-dark); font-size: 1.05rem; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 8px; }

/* ---------- Modal popup ---------- */
.modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 56, 47, 0.45);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  z-index: 200;
  padding: 20px;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: 100%;
  max-width: 460px;
  padding: 26px;
  position: relative;
  animation: modalIn 0.22s cubic-bezier(0.2, 0.8, 0.3, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s;
}
.modal-close:hover { background: var(--terracotta); color: #fff; }
.modal-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.modal-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--terracotta);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.modal-ico.conflict-ico { background: #c0392b; }
.modal-ico.transition-ico { background: #a61b1b; }
.modal-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--forest-dark); }
.modal-sub { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.modal-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}
.conflict-badge { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c0; }
.transition-badge { background: #fbecec; color: #a61b1b; border: 1px solid #eeb0b0; }
.modal-tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 2px;
}
.modal-body { border-top: 1px solid var(--line); padding-top: 6px; }
.modal-booking {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.modal-booking:last-child { border-bottom: none; }
.modal-booking-conflict {
  background: #fdecea;
  border: 1px solid #f5c6c0;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 8px 0;
}
.modal-b-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.modal-b-guest { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--forest-dark); }
.modal-b-dates { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.modal-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}
.modal-row:last-child { border-bottom: none; }
.modal-k { font-size: 0.82rem; color: var(--muted); flex-shrink: 0; }
.modal-v { font-size: 0.92rem; font-weight: 600; color: var(--ink); text-align: right; word-break: break-word; }
.modal-actions { display: flex; gap: 10px; margin-top: 22px; justify-content: flex-end; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  z-index: 100;
  animation: toastIn 0.25s ease;
  max-width: 90vw;
  text-align: center;
}
.toast.error { background: var(--terracotta); }
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .container { padding: 20px 14px 50px; }
  .struct-card { padding: 20px; }
  .room-card { padding: 16px; }
  .bp-dates { grid-template-columns: 1fr; }
  .topbar-inner { padding: 12px 14px; }
  .cal-title { order: -1; width: 100%; }
}
