/* ============================================================
   GOES BALI TRAVEL — Admin Panel v2 CSS
   Uses Bootstrap 5 as base + custom overrides
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap");

:root {
  --primary: #79b266;
  --primary-dark: #5d9450;
  --primary-light: #a3cc92;
  --primary-bg: rgba(121, 178, 102, 0.08);
  --secondary: #fbb040;
  --secondary-dark: #e09530;
  --dark: #1a1f16;
  --gray: #6b7563;
  --gray-light: #9ba894;
  --light: #f5f7f3;
  --white: #ffffff;
  --border: rgba(122, 180, 103, 0.15);
  --shadow: 0 2px 16px #1a1f1614;
  --shadow-lg: 0 8px 40px rgba(26, 31, 22, 0.14);
  --r: 10px;
  --r-lg: 16px;
  --sidebar-w: 260px;
  --topbar-h: 64px;
  --t: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #f0f2ed;
  color: var(--dark);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ---- SIDEBAR ---- */
.gbt-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  z-index: 1040;
  transition: transform var(--t);
  overflow-y: auto;
  overflow-x: hidden;
}
.gbt-sidebar::-webkit-scrollbar {
  width: 4px;
}
.gbt-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sidebar-brand-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.sidebar-brand-icon img {
  height: 42px;
  width: auto;
}
.sidebar-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}
.sidebar-brand-name span {
  color: var(--secondary);
}
.sidebar-brand-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

.sidebar-section-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding: 18px 22px 6px;
}
.sidebar-nav {
  flex: 1;
  padding: 8px 12px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--r);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--t);
  margin-bottom: 2px;
  cursor: pointer;
}
.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}
.sidebar-link.active {
  background: var(--primary);
  color: white;
}
.sidebar-link .link-icon {
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.sidebar-link .link-badge {
  margin-left: auto;
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}
.sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 10px 12px;
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.sidebar-user-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.sidebar-user-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.sidebar-user-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ---- TOPBAR ---- */
.gbt-topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  height: var(--topbar-h);
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 1030;
  transition: left var(--t);
}
.topbar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.topbar-crumb {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 1px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background var(--t);
  position: relative;
  color: var(--dark);
}
.topbar-btn:hover {
  background: #e8ebe4;
}
.topbar-btn .badge-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid white;
}
.topbar-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
}
.topbar-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 4px;
}

/* ---- NOTIFICATION DROPDOWN ---- */
.notif-dropdown {
  width: 360px;
  max-width: 90vw;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.notif-dropdown-header {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.notif-list {
  max-height: 360px;
  overflow-y: auto;
}
.notif-item {
  display: flex;
  gap: 12px;
  padding: 12px 18px;
  text-decoration: none;
  border-bottom: 1px solid var(--light);
  transition: background var(--t);
}
.notif-item:hover {
  background: var(--light);
}
.notif-item:last-child {
  border-bottom: none;
}
.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.notif-body {
  flex: 1;
  min-width: 0;
}
.notif-title {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--dark);
}
.notif-desc {
  font-size: 0.78rem;
  color: var(--gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notif-time {
  font-size: 0.7rem;
  color: var(--gray-light);
  margin-top: 2px;
}
.notif-empty {
  padding: 32px 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-light);
}
.sidebar-toggle-btn {
  display: none;
  width: 38px;
  height: 38px;
  border: none;
  background: var(--light);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ---- MAIN CONTENT ---- */
.gbt-main {
  margin-left: var(--sidebar-w);
  padding-top: var(--topbar-h);
  min-height: 100vh;
  transition: margin-left var(--t);
}
.gbt-content {
  padding: 28px;
}
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.page-header h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.page-header p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}
.page-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* ---- CARDS ---- */
.gbt-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gbt-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.gbt-card-header h5 {
  font-size: 0.97rem;
  font-weight: 700;
  margin: 0;
}
.gbt-card-header .sub {
  font-size: 0.77rem;
  color: var(--gray-light);
  margin-top: 1px;
}
.gbt-card-body {
  padding: 22px;
}

/* ---- STAT CARDS ---- */
.stat-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
}
.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.stat-icon.green {
  background: rgba(122, 180, 103, 0.12);
}
.stat-icon.yellow {
  background: rgba(250, 177, 64, 0.12);
}
.stat-icon.blue {
  background: rgba(59, 130, 246, 0.1);
}
.stat-icon.red {
  background: rgba(239, 68, 68, 0.1);
}
.stat-change {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.stat-change.up {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.stat-change.down {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 4px;
}
.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.stat-footer {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 6px;
}

/* ---- TABLES ---- */
.gbt-table {
  width: 100%;
  border-collapse: collapse;
}
.gbt-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-light);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  background: var(--light);
}
.gbt-table tbody td {
  padding: 13px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.gbt-table tbody tr:last-child td {
  border-bottom: none;
}
.gbt-table tbody tr:hover {
  background: #fafbf9;
}

/* ---- BADGES ---- */
.badge-ok {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.badge-warn {
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.badge-err {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* ---- ACTION BUTTONS ---- */
.act-btn {
  border: none;
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
}
.act-view {
  background: rgba(122, 180, 103, 0.1);
  color: var(--primary-dark);
}
.act-view:hover {
  background: var(--primary);
  color: white;
}
.act-edit {
  background: rgba(250, 177, 64, 0.12);
  color: #b45309;
}
.act-edit:hover {
  background: var(--secondary);
  color: var(--dark);
}
.act-del {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}
.act-del:hover {
  background: #ef4444;
  color: white;
}

/* ---- TOOLBAR ---- */
.gbt-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.toolbar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 9px 14px;
  min-width: 240px;
  flex: 1;
}
.toolbar-search input {
  border: none;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--dark);
  background: transparent;
  width: 100%;
}
.toolbar-select {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 9px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--dark);
  background: white;
  outline: none;
  cursor: pointer;
}

/* ---- FORMS ---- */
.gbt-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  display: block;
}
.gbt-input,
.gbt-select,
.gbt-textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--dark);
  background: white;
  outline: none;
  transition: border-color var(--t);
}
.gbt-input:focus,
.gbt-select:focus,
.gbt-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 180, 103, 0.12);
}
.gbt-textarea {
  resize: vertical;
  min-height: 100px;
}
.input-hint {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 4px;
}

/* ---- PACKAGE MINI CARD ---- */
.pkg-card-admin {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.pkg-card-admin:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pkg-card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.pkg-card-admin:hover .pkg-card-img img {
  transform: scale(1.05);
}
.pkg-card-body {
  padding: 16px;
}
.pkg-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pkg-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin: 4px 0 10px;
}
.pkg-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkg-card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ---- CALENDAR ---- */
#gbt-calendar .fc-toolbar-title {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
}
#gbt-calendar .fc-button-primary {
  background: var(--primary) !important;
  border-color: var(--primary-dark) !important;
  font-size: 0.8rem !important;
  border-radius: 8px !important;
}
#gbt-calendar .fc-button-primary:hover {
  background: var(--primary-dark) !important;
}
#gbt-calendar .fc-daygrid-event {
  border-radius: 5px !important;
  font-size: 0.75rem !important;
  padding: 2px 5px !important;
}
#gbt-calendar .fc-event-confirmed {
  background: var(--primary) !important;
  border-color: var(--primary-dark) !important;
}
#gbt-calendar .fc-event-pending {
  background: var(--secondary) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--dark) !important;
}
#gbt-calendar .fc-event-cancelled {
  background: #ef4444 !important;
  border-color: #dc2626 !important;
}
#gbt-calendar .fc-col-header-cell {
  background: var(--light) !important;
}
#gbt-calendar .fc-day-today {
  background: rgba(122, 180, 103, 0.06) !important;
}

/* ---- PROFILE PAGE ---- */
.profile-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}
.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.profile-avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  border: 2px solid white;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .gbt-sidebar {
    transform: translateX(-100%);
  }
  .gbt-sidebar.open {
    transform: translateX(0);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.2);
  }
  .gbt-main {
    margin-left: 0;
  }
  .gbt-topbar {
    left: 0;
  }
  .sidebar-toggle-btn {
    display: flex;
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1039;
  }
  .sidebar-overlay.show {
    display: block;
  }
}
@media (max-width: 576px) {
  .gbt-content {
    padding: 16px;
  }
  .page-header {
    flex-direction: column;
  }
  .gbt-toolbar {
    gap: 8px;
  }
  .toolbar-search {
    min-width: 100%;
  }
}

/* ---- DRIVER & STATUS PICKERS (card-style radio groups, used on booking show/add forms) ---- */
.driver-picker { display: flex; flex-direction: column; gap: 10px; max-height: 420px; overflow-y: auto; padding-right: 4px; }
.driver-radio { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.driver-card { display: block; border: 2px solid var(--border); border-radius: var(--r); padding: 12px 14px; cursor: pointer; transition: all var(--t); background: var(--white); }
.driver-card:hover { border-color: var(--primary-light); }
.driver-radio:checked + .driver-card { border-color: var(--primary); background: var(--primary-bg); }
.driver-card-none { display: flex; align-items: center; gap: 8px; color: var(--gray); font-weight: 600; font-size: 0.85rem; }
.driver-card-top { display: flex; align-items: center; gap: 10px; }
.driver-card-info { flex: 1; min-width: 0; }
.driver-card-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.driver-card-vehicle { font-size: 0.76rem; color: var(--gray); margin-top: 2px; }
.driver-card-stats { display: flex; gap: 14px; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); font-size: 0.76rem; color: var(--gray); flex-wrap: wrap; }
.driver-card-stats i { color: var(--primary); }
.driver-card-stats i.text-warning { color: #f59e0b !important; }

.status-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.status-radio { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.status-pill { display: flex; align-items: center; gap: 7px; padding: 10px 15px; border-radius: 10px; border: 2px solid var(--border); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all var(--t); color: var(--gray); background: var(--white); }
.status-pill:hover { border-color: var(--primary-light); }
.status-radio:checked + .status-pill { box-shadow: var(--shadow); }
.status-radio:checked + .status-pill.st-pending { background: #fef3c7; border-color: #f59e0b; color: #92400e; }
.status-radio:checked + .status-pill.st-confirmed { background: var(--primary-bg); border-color: var(--primary); color: var(--primary-dark); }
.status-radio:checked + .status-pill.st-in_progress { background: #ede9fe; border-color: #8b5cf6; color: #6d28d9; }
.status-radio:checked + .status-pill.st-completed { background: var(--primary-bg); border-color: var(--primary-dark); color: var(--primary-dark); }
.status-radio:checked + .status-pill.st-cancelled { background: #fee2e2; border-color: #ef4444; color: #b91c1c; }
.status-radio:checked + .status-pill.st-dp_paid { background: #dbeafe; border-color: #2563eb; color: #1d4ed8; }
.status-radio:checked + .status-pill.pay-unpaid { background: #fef3c7; border-color: #f59e0b; color: #92400e; }
.status-radio:checked + .status-pill.pay-dp_paid { background: #dbeafe; border-color: #2563eb; color: #1d4ed8; }
.status-radio:checked + .status-pill.pay-paid { background: #dcfce7; border-color: #16a34a; color: #166534; }
.status-radio:checked + .status-pill.pay-refunded { background: #dbeafe; border-color: #3b82f6; color: #1d4ed8; }
.status-radio:checked + .status-pill.pay-failed { background: #fee2e2; border-color: #ef4444; color: #b91c1c; }

/* ---- PACKAGE PICKER (searchable card-style radio group, "Tambah Booking" form) ---- */
.pkg-picker-list { display: flex; flex-direction: column; gap: 8px; max-height: 260px; overflow-y: auto; padding-right: 4px; margin-top: 8px; }
.pkg-radio { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.pkg-card { display: flex; align-items: center; gap: 12px; border: 2px solid var(--border); border-radius: var(--r); padding: 10px 12px; cursor: pointer; transition: all var(--t); background: var(--white); }
.pkg-card:hover { border-color: var(--primary-light); }
.pkg-radio:checked + .pkg-card { border-color: var(--primary); background: var(--primary-bg); }
.pkg-card-thumb { width: 48px; height: 40px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--light); }
.pkg-card-info { flex: 1; min-width: 0; }
.pkg-card-name { font-weight: 700; font-size: 0.86rem; color: var(--dark); }
.pkg-card-meta { font-size: 0.74rem; color: var(--gray); margin-top: 2px; }
.pkg-card-price { font-size: 0.78rem; font-weight: 700; color: var(--primary-dark); text-align: right; flex-shrink: 0; white-space: nowrap; }

/* ---- ADMIN DATE PICKER (flatpickr availability dots, "Tambah Booking" form) ---- */
.admin-cal-wrap .flatpickr-calendar { box-shadow: var(--shadow-lg); border: 1px solid var(--border); border-radius: var(--r-lg); font-family: 'DM Sans', sans-serif; }
.admin-cal-wrap .flatpickr-day { border-radius: 8px; position: relative; font-weight: 600; }
.admin-cal-wrap .flatpickr-day.selected, .admin-cal-wrap .flatpickr-day.selected:hover { background: var(--primary); border-color: var(--primary); }
.admin-cal-wrap .flatpickr-day.today { border-color: var(--primary); }
.cal-avail-dot { position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; }
.cal-legend { display: flex; gap: 14px; font-size: 0.72rem; color: var(--gray); margin-top: 8px; flex-wrap: wrap; }
.cal-legend-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 4px; }
