/* ============================================================
   Livasta Host Dashboard — Calendar Page Styles (V2 Redesign)
   Clean, minimal, premium calendar with soft teal palette
   ============================================================ */

/* ---------- Calendar Layout ---------- */
.calendar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .calendar-layout {
    grid-template-columns: 280px 1fr;
  }
}

/* ---------- Property Sidebar ---------- */
.property-sidebar {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(220, 232, 223, 0.7);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.property-sidebar .sidebar-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--sage);
  background: linear-gradient(135deg, rgba(22, 51, 44, 0.02), rgba(220, 232, 223, 0.15));
}

.property-sidebar .sidebar-title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--pine);
}

.property-sidebar-list {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.property-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(220, 232, 223, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.property-sidebar-item:hover {
  background: rgba(220, 232, 223, 0.2);
}

.property-sidebar-item.active {
  background: linear-gradient(90deg, rgba(22, 51, 44, 0.06), rgba(22, 51, 44, 0.02));
  border-left: 3px solid var(--pine);
}

.property-sidebar-item img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-sidebar-item .prop-info {
  flex: 1;
  min-width: 0;
}

.property-sidebar-item .prop-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-sidebar-item .prop-location {
  font-size: 11px;
  color: var(--muted);
}

.property-sidebar-item .prop-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--pine);
  white-space: nowrap;
}

/* ---------- Calendar Main Area ---------- */
.calendar-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Quick Base Price Bar ---------- */
.cal-base-price-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(0, 122, 122, 0.04), rgba(22, 51, 44, 0.06));
  border: 1px solid rgba(0, 122, 122, 0.12);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.cal-base-price-bar .bp-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cal-base-price-bar .bp-inline-input {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 0 10px;
  transition: 0.15s;
}

.cal-base-price-bar .bp-inline-input:focus-within {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(0, 122, 122, 0.1);
}

.cal-base-price-bar .bp-inline-input input {
  border: none;
  outline: none;
  background: transparent;
  width: 70px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.cal-base-price-bar .bp-inline-input .bp-unit {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.cal-base-price-bar .bp-save-btn {
  padding: 8px 18px;
  background: var(--pine);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cal-base-price-bar .bp-save-btn:hover {
  background: var(--pine-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 122, 122, 0.2);
}

.cal-base-price-bar .bp-save-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---------- Filter Pills Row ---------- */
.cal-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cal-filter-pill {
  padding: 6px 14px;
  border: 1.5px solid var(--sage);
  border-radius: 20px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cal-filter-pill:hover {
  border-color: var(--pine);
  color: var(--pine);
  background: rgba(0, 122, 122, 0.04);
}

.cal-filter-pill.active {
  background: var(--pine);
  color: white;
  border-color: var(--pine);
  box-shadow: 0 2px 8px rgba(0, 122, 122, 0.2);
}

.cal-filter-pill .pill-count {
  display: inline-block;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  margin-left: 4px;
  background: rgba(0, 0, 0, 0.1);
  color: inherit;
}

.cal-filter-pill.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- Calendar Card ---------- */
.calendar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(220, 232, 223, 0.7);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  user-select: none;
}

@media (min-width: 640px) {
  .calendar-card { padding: 28px; }
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-nav .cal-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: var(--white);
  cursor: pointer;
}

.calendar-nav .cal-btn:hover {
  border-color: var(--pine);
  background: rgba(0, 122, 122, 0.06);
  transform: scale(1.08);
}

.calendar-nav .cal-label {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--pine);
}

/* Weekday header */
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  background: linear-gradient(135deg, #0D3B36, #164B44);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.cal-weekday {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 0;
}

/* Calendar grid */
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid rgba(220, 232, 223, 0.6);
  border-top: none;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  background: var(--white);
}

/* ---------- Calendar Day Cell ---------- */
.cal-day {
  min-height: 72px;
  border-right: 1px solid rgba(220, 232, 223, 0.5);
  border-bottom: 1px solid rgba(220, 232, 223, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.1s ease;
  position: relative;
  background: var(--white);
  color: var(--ink);
}

.cal-day:nth-child(7n) { border-right: none; }

@media (max-width: 520px) {
  .cal-day { min-height: 54px; font-size: 13px; gap: 2px; }
}

.cal-day:hover:not(.disabled):not(.booked):not(.blocked):not(.empty):not(.selected) {
  background: rgba(0, 122, 122, 0.05);
}

.cal-day .day-number {
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  color: #2D3A3E;
}

.cal-day .day-price {
  font-size: 10px;
  font-weight: 600;
  color: #5B8A72;
}

/* Weekend price color — warm amber */
.cal-day.weekend:not(.selected):not(.booked):not(.blocked) .day-price {
  color: #C88A2B;
}

.cal-day .day-price.custom {
  color: var(--pine);
  font-weight: 800;
}

@media (max-width: 520px) {
  .cal-day .day-price { font-size: 9px; }
  .cal-day .day-number { font-size: 12px; }
}

/* Today */
.cal-day.today {
  background: rgba(0, 122, 122, 0.06);
}

.cal-day.today .day-number {
  background: var(--pine);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Booked — shown as "blocked" with diagonal stripes + teal accent */
.cal-day.booked {
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 122, 122, 0.06),
    rgba(0, 122, 122, 0.06) 3px,
    rgba(0, 122, 122, 0.12) 3px,
    rgba(0, 122, 122, 0.12) 6px
  );
  cursor: pointer;
}

.cal-day.booked .day-number {
  color: var(--pine);
  font-weight: 800;
}

.cal-day.booked .day-price { display: none; }

.cal-day.booked::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--pine);
  opacity: 0.4;
}

.cal-day.booked:hover {
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 122, 122, 0.1),
    rgba(0, 122, 122, 0.1) 3px,
    rgba(0, 122, 122, 0.18) 3px,
    rgba(0, 122, 122, 0.18) 6px
  );
}

/* Turnover (check-in/out) */
.cal-day.turnover {
  background: rgba(212, 167, 44, 0.1);
  cursor: pointer;
}

.cal-day.turnover .day-number { color: #9A7A1F; }
.cal-day.turnover .day-price { display: none; }

/* Blocked (host-blocked) */
.cal-day.blocked {
  background: repeating-linear-gradient(
    45deg,
    rgba(140, 150, 143, 0.06),
    rgba(140, 150, 143, 0.06) 3px,
    rgba(140, 150, 143, 0.12) 3px,
    rgba(140, 150, 143, 0.12) 6px
  );
  color: var(--muted);
  cursor: not-allowed;
}

.cal-day.blocked .day-number { color: #9CA3AF; }
.cal-day.blocked .day-price { display: none; }

/* Past / disabled */
.cal-day.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

/* Holiday cell subtle highlight */
.cal-day.holiday:not(.booked):not(.blocked):not(.selected) {
  background: rgba(235, 111, 74, 0.04);
}

.cal-day.holiday:not(.booked):not(.blocked):not(.selected) .day-number {
  color: #C85A35;
}

/* Weekend cell subtle tint */
.cal-day.weekend:not(.booked):not(.blocked):not(.selected):not(.holiday) {
  background: rgba(212, 167, 44, 0.03);
}

/* ---------- Selected & Range States ---------- */
.cal-day.selected {
  background: var(--pine) !important;
  color: #fff;
  z-index: 2;
}

.cal-day.selected .day-number { color: #fff !important; background: none !important; }

.cal-day.selected .day-price {
  color: rgba(255, 255, 255, 0.7);
}

.cal-day.selected.range-start {
  border-radius: 12px 4px 4px 12px;
}

.cal-day.selected.range-end {
  border-radius: 4px 12px 12px 4px;
}

.cal-day.selected.in-range {
  background: rgba(22, 51, 44, 0.82) !important;
}

/* Preview (drag hover) */
.cal-day.preview {
  background: rgba(0, 122, 122, 0.1) !important;
  border-color: rgba(0, 122, 122, 0.2);
  border-style: dashed;
}

.cal-day.preview.range-start {
  border-radius: 12px 4px 4px 12px;
  background: rgba(0, 122, 122, 0.16) !important;
}

.cal-day.preview.range-end {
  border-radius: 4px 12px 12px 4px;
  background: rgba(0, 122, 122, 0.16) !important;
}

.cal-day.empty {
  cursor: default;
  pointer-events: none;
  background: var(--canvas);
}

/* Dimmed (filtered out) */
.cal-day.dimmed {
  opacity: 0.12 !important;
  pointer-events: none !important;
}

/* Holiday marker */
.holiday-marker {
  position: absolute;
  top: 4px;
  right: 5px;
  font-size: 9px;
  line-height: 1;
}

/* ---------- Calendar Legend ---------- */
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(220, 232, 223, 0.7);
  font-size: 12px;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
}

.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cal-legend-dot.booked-dot { background: var(--pine); }
.cal-legend-dot.available-dot { background: #5B8A72; }
.cal-legend-dot.holiday-dot { background: #C85A35; }
.cal-legend-dot.selected-dot { background: #164B44; }
.cal-legend-dot.blocked-dot { background: #9CA3AF; }
.cal-legend-dot.weekend-dot { background: #C88A2B; }

/* ---------- Pricing Panel ---------- */
.pricing-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(220, 232, 223, 0.7);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
  .pricing-panel { padding: 28px; }
}

.pricing-panel .pricing-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 16px;
}

/* Quick price suggestions */
.quick-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.quick-price-btn {
  padding: 10px 6px;
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.quick-price-btn:hover {
  border-color: var(--pine);
  color: var(--pine);
  background: rgba(0, 122, 122, 0.03);
  transform: translateY(-1px);
}

.quick-price-btn .qp-icon { font-size: 15px; }
.quick-price-btn .qp-label { font-size: 9px; font-weight: 500; }

/* Price input */
.price-input-group {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.price-input-wrapper { flex: 1; }

.price-input {
  width: 100%;
  border: 2px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--pine);
  outline: none;
  transition: all 0.2s ease;
  background: var(--canvas);
}

.price-input:focus {
  border-color: var(--pine);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 122, 122, 0.08);
}

/* Selected dates info chip */
.selected-dates-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(0, 122, 122, 0.04), rgba(0, 122, 122, 0.08));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 122, 122, 0.1);
  animation: slideUp 0.25s ease;
  margin-bottom: 16px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dates-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--pine);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.dates-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dates-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.dates-range {
  font-size: 13px;
  font-weight: 600;
  color: var(--pine);
}

/* Pricing summary */
.pricing-summary {
  padding: 14px;
  background: var(--canvas);
  border-radius: var(--radius-md);
  margin-top: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
  color: var(--ink);
}

.summary-row.sub {
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px dashed rgba(220, 232, 223, 0.7);
  padding-bottom: 8px;
  margin-bottom: 6px;
}

.summary-row.total {
  font-weight: 700;
  font-size: 15px;
  color: var(--pine);
}

.summary-total { font-weight: 700; }

/* ---------- Property Detail Panel ---------- */
.cal-property-detail {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(220, 232, 223, 0.7);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cal-property-detail .cpd-hero {
  position: relative;
  height: 180px;
}

.cal-property-detail .cpd-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cal-property-detail .cpd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.cal-property-detail .cpd-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  color: white;
}

.cal-property-detail .cpd-hero-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
}

.cal-property-detail .cpd-hero-location {
  font-size: 12px;
  opacity: 0.9;
}

.cal-property-detail .cpd-body { padding: 18px 20px; }

.cal-property-detail .cpd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.cal-property-detail .cpd-stat {
  text-align: center;
  padding: 12px 10px;
  background: var(--canvas);
  border-radius: var(--radius-md);
  border: 1px solid rgba(220, 232, 223, 0.3);
}

.cal-property-detail .cpd-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--pine);
}

.cal-property-detail .cpd-stat-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* Upcoming bookings list */
.cal-bookings-list { margin-top: 12px; }

.cal-booking-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(220, 232, 223, 0.5);
  transition: all 0.15s ease;
}

.cal-booking-item:last-child { border-bottom: none; }

.cal-booking-item .cbi-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.cal-booking-item .cbi-info { flex: 1; min-width: 0; }
.cal-booking-item .cbi-name { font-size: 12px; font-weight: 600; }
.cal-booking-item .cbi-dates { font-size: 11px; color: var(--muted); }
.cal-booking-item .cbi-amount { font-size: 12px; font-weight: 700; color: var(--pine); }

/* ---------- Booking Detail Popup ---------- */
.cal-booking-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 55;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  padding: 28px;
  min-width: 320px;
  max-width: 400px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cal-booking-popup.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.cal-booking-popup .popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cal-booking-popup .popup-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--pine);
}

.cal-booking-popup .popup-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
}

.cal-booking-popup .popup-close:hover {
  background: rgba(220, 232, 223, 0.5);
  transform: rotate(90deg);
}

.cal-booking-popup .popup-guest {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(220, 232, 223, 0.5);
}

.cal-booking-popup .popup-guest img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.cal-booking-popup .popup-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cal-booking-popup .pd-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: var(--canvas);
  border-radius: var(--radius-md);
}

.cal-booking-popup .pd-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.cal-booking-popup .pd-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 3px;
}

/* ---------- Hover Tooltip ---------- */
.cal-hover-tooltip {
  border: 1px solid rgba(220, 232, 223, 0.8);
  border-radius: 14px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.12);
  background: white;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.12s ease, transform 0.12s ease;
  position: absolute;
  z-index: 9999;
  padding: 12px 16px;
  max-width: 260px;
}

.cal-hover-tooltip.visible {
  opacity: 1;
  transform: scale(1);
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid #EEF3F0;
  padding-bottom: 8px;
}

.tooltip-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--pine);
}

.tooltip-guest-name {
  font-size: 13px;
  font-weight: 700;
  color: #1E2D34;
}

.tooltip-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #5E727A;
  margin-bottom: 3px;
}

.tooltip-row span.val {
  font-weight: 600;
  color: #1E2D34;
}

.tooltip-holiday {
  font-size: 12px;
  font-weight: 700;
  color: #C85A35;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Filter action bar ---------- */
.cal-action-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.cal-action-strip .action-btn {
  padding: 7px 14px;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.cal-action-strip .action-btn:hover {
  border-color: var(--pine);
  color: var(--pine);
}

.cal-action-strip .action-btn.danger {
  border-color: #DC2626;
  color: #DC2626;
}

.cal-action-strip .action-btn.danger:hover {
  background: #FEF2F2;
}

/* ---------- Form label ---------- */
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
