/* ===== BOTS PAGE — тёмная тема, зелёные акценты (как на главной) ===== */
.bots-page {
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  position: relative;
}

/* Геометрический фон с зелёными линиями */
.bots-bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 45%, rgba(60, 255, 195, 0.06) 50%, transparent 55%),
    linear-gradient(225deg, transparent 45%, rgba(60, 255, 195, 0.05) 50%, transparent 55%),
    linear-gradient(90deg, transparent 48%, rgba(60, 255, 195, 0.04) 50%, transparent 52%);
  background-size: 120px 120px, 80px 80px, 200px 100px;
  opacity: 0.9;
}

/* Акцентный цвет — в тон главной (КиВи) */
:root {
  --bots-green: #3cffc3;
  --bots-green-bright: #00ff88;
  --bots-green-glow: rgba(60, 255, 195, 0.35);
  --bots-dark: #1a1a1a;
  --bots-darker: #111;
}

/* Header переопределения */
.header-bots {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(60, 255, 195, 0.25);
}
.logo-bots { color: #fff; text-shadow: 0 0 20px var(--bots-green-glow); }
.nav-bots a { color: #ccc; }
.nav-bots a:hover,
.nav-bots a.active { color: var(--bots-green); }
.nav-bots a::after { background: var(--bots-green); }
.header-btn-bots {
  background: var(--bots-green);
  color: #000;
  box-shadow: 0 0 20px var(--bots-green-glow);
}
.header-btn-bots:hover {
  background: var(--bots-green-bright);
  box-shadow: 0 0 30px var(--bots-green-glow);
}

/* Main */
.bots-main {
  position: relative;
  z-index: 1;
  padding: 24px 20px 100px;
}
.bots-container {
  max-width: 560px;
  margin: 0 auto;
}

/* Главная карточка: наш бот */
.bots-event-card {
  background: var(--bots-dark);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(60, 255, 195, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}
.bots-event-left {
  min-width: 0;
}
.bots-event-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.bots-event-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #bbb;
  margin: 0 0 18px 0;
}
.bots-event-cta {
  display: inline-block;
  background: var(--bots-green);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.bots-event-cta:hover {
  background: var(--bots-green-bright);
  box-shadow: 0 0 20px var(--bots-green-glow);
}

/* Сетка карточек 2x2 */
.bots-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
  align-items: start;
}
.bots-card,
.bots-card-btn {
  background: var(--bots-dark);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  display: block;
  margin: 0;
  box-sizing: border-box;
}
.bots-card { text-decoration: none; }
.bots-card-btn {
  text-decoration: none;
  line-height: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.bots-card-btn .bots-card-head,
.bots-card-btn .bots-card-title,
.bots-card-btn .bots-card-desc {
  margin: 0;
}
.bots-card-btn .bots-card-head {
  margin-bottom: 8px;
}
.bots-card:hover,
.bots-card-btn:hover {
  border-color: rgba(60, 255, 195, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.bots-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.bots-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.bots-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bots-green);
  flex-shrink: 0;
}
.bots-card-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.45;
  margin: 0;
}

/* Адрес — зелёная карточка (ссылка на карты) */
.bots-address-card {
  display: block;
  background: var(--bots-green);
  color: #000;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px var(--bots-green-glow);
  text-decoration: none;
  transition: box-shadow 0.2s, opacity 0.2s;
}
.bots-address-card:hover {
  box-shadow: 0 6px 28px var(--bots-green-glow);
  opacity: 0.95;
}
.bots-address-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  opacity: 0.95;
}
.bots-address-text {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.bots-address-meta {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

/* Модалка «О нас» */
.bots-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.bots-modal-overlay[hidden] {
  display: none;
}
.bots-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.bots-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bots-dark);
  border-radius: 20px;
  border: 1px solid rgba(60, 255, 195, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(60, 255, 195, 0.1);
}
.bots-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(60, 255, 195, 0.15);
}
.bots-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}
.bots-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.bots-modal-close:hover {
  background: rgba(60, 255, 195, 0.2);
  color: var(--bots-green);
}
.bots-modal-body {
  padding: 24px;
}
.bots-modal-text {
  font-size: 15px;
  line-height: 1.6;
  color: #bbb;
  margin: 0 0 20px 0;
}
.bots-modal-block {
  margin-bottom: 20px;
}
.bots-modal-block:last-child {
  margin-bottom: 0;
}
.bots-modal-block-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bots-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}
.bots-modal-schedule {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
  margin: 0;
}
.bots-modal-address-link {
  font-size: 15px;
  color: var(--bots-green);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.bots-modal-address-link:hover {
  opacity: 0.9;
  text-decoration: underline;
}

/* Footer */
.footer-bots {
  border-top: 1px solid rgba(60, 255, 195, 0.15);
}
.footer-bots .footer-logo { color: #fff; }
.footer-bots .footer-nav a { color: #888; }
.footer-bots .footer-nav a:hover { color: var(--bots-green); }

/* Нижнее меню с иконками */
.bots-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 64px;
  padding: 6px 4px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0));
  background: var(--bots-darker);
  border-top: 1px solid rgba(60, 255, 195, 0.15);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}
.bots-bottom-nav-item {
  flex: 1;
  min-width: 0;
  max-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 2px 0;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.bots-bottom-nav-item:hover {
  color: #ccc;
}
.bots-bottom-nav-item-active {
  color: var(--bots-green);
}
.bots-bottom-nav-icon {
  font-size: 22px;
  line-height: 1;
  display: block;
  flex-shrink: 0;
}
.bots-bottom-nav-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}
.bots-bottom-nav-admin {
  /* такой же размер, как остальные */
}

/* Страница брони — две карточки выбора */
.booking-bot-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-bot-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  border: 1px solid rgba(60, 255, 195, 0.15);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-bot-card:hover {
  border-color: rgba(60, 255, 195, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.booking-bot-card-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.booking-bot-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.booking-bot-card-desc {
  font-size: 13px;
  color: #888;
}

/* Модалка выбора стола/Вип и предупреждение Вип */
.booking-choice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-choice-item {
  display: block;
  width: 100%;
  padding: 14px 18px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.booking-choice-item:hover {
  border-color: rgba(60, 255, 195, 0.4);
  background: rgba(0, 0, 0, 0.4);
}
.booking-choice-item-vip {
  border-color: rgba(180, 120, 255, 0.3);
}
.booking-choice-item-vip:hover {
  border-color: rgba(180, 120, 255, 0.5);
}
.booking-vip-warning-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  white-space: pre-wrap;
  margin: 0;
}
.booking-vip-warning-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.booking-vip-warning-actions .bots-event-cta {
  flex: 1;
  min-width: 120px;
}
.booking-vip-cancel-btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ccc;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.booking-vip-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Уже забронировано + отмена */
.booking-my-booking {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(60, 255, 195, 0.1);
  border: 1px solid rgba(60, 255, 195, 0.25);
  border-radius: 14px;
}
.booking-already-text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px 0;
}
.booking-already-details {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 14px 0;
}
.booking-cancel-btn {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 100, 100, 0.5);
  background: rgba(255, 100, 100, 0.15);
  color: #f88;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.booking-cancel-btn:hover {
  background: rgba(255, 100, 100, 0.25);
}
.booking-bot-card.disabled {
  pointer-events: none;
  opacity: 0.6;
}
.booking-datetime-form .profile-bot-field {
  margin-bottom: 16px;
}
.booking-datetime-form .profile-bot-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 6px;
}
.booking-datetime-form .profile-bot-field input,
.booking-datetime-form .profile-bot-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
/* Модалка «Изменить бронь» — те же стили, тёмные поля и акцент */
.booking-edit-form .profile-bot-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 6px;
}
.booking-edit-form .profile-bot-field input,
.booking-edit-form .profile-bot-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.booking-edit-form .profile-bot-field input::placeholder {
  color: #888;
}
.booking-edit-form .profile-bot-field input:focus,
.booking-edit-form .profile-bot-field select:focus {
  outline: none;
  border-color: var(--bots-green);
  box-shadow: 0 0 0 2px rgba(60, 255, 195, 0.2);
}
.booking-edit-form .profile-bot-field input[type="date"],
.booking-edit-form .profile-bot-field input[type="number"] {
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
}
.booking-edit-form .booking-until-close-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}
.booking-edit-form .booking-until-close-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bots-green);
}
.booking-edit-form .booking-datetime-actions .bots-event-cta {
  flex: 1;
  text-transform: none;
  letter-spacing: 0;
}
.booking-datetime-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.booking-datetime-actions .bots-event-cta {
  flex: 1;
}
.booking-until-close-row {
  margin-top: 4px;
}
.booking-until-close-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}
.booking-until-close-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.booking-for-who-row {
  margin-top: 16px;
}
.booking-for-who-label {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}
.booking-for-who-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-for-who-opt {
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-for-who-opt input { width: 18px; height: 18px; }
.booking-for-who-other {
  margin-top: 12px;
}
.booking-for-who-search {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
}
.booking-for-who-user-list {
  max-height: 160px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
}
.booking-for-who-user-row {
  padding: 10px 12px;
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.booking-for-who-user-row:last-child { border-bottom: none; }
.booking-for-who-user-row:hover { background: rgba(255,255,255,0.08); }
.booking-for-who-selected {
  margin-top: 8px;
  font-size: 13px;
  color: var(--bots-green);
}

.booking-booked-until {
  font-size: 16px;
  font-weight: 600;
  color: var(--bots-green);
  margin: 0 0 12px 0;
}
.booking-booked-note {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

/* План зала в модалке брони */
.booking-plan-hint {
  font-size: 14px;
  color: #888;
  margin: 0 0 12px 0;
}
.booking-floor-plan-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 240px;
}
.booking-floor-plan-room {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.65;
  min-height: 220px;
  background: rgba(0, 0, 0, 0.4);
}
.booking-floor-plan-items {
  position: absolute;
  inset: 0;
}
.booking-floor-plan-item {
  position: absolute;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.booking-floor-plan-item-table {
  background: rgba(60, 255, 195, 0.25);
  border: 1px solid rgba(60, 255, 195, 0.5);
  cursor: pointer;
}
.booking-floor-plan-item-table:hover {
  background: rgba(60, 255, 195, 0.4);
  border-color: rgba(60, 255, 195, 0.7);
}
.booking-floor-plan-item-vip {
  background: rgba(180, 120, 255, 0.35);
  border: 1px solid rgba(180, 120, 255, 0.6);
  cursor: pointer;
}
.booking-floor-plan-item-vip:hover {
  background: rgba(180, 120, 255, 0.5);
  border-color: rgba(180, 120, 255, 0.8);
}
/* Занятые стол/Вип — другой цвет */
.booking-floor-plan-item-booked.booking-floor-plan-item-table {
  background: rgba(200, 120, 60, 0.4);
  border-color: rgba(200, 120, 60, 0.7);
}
.booking-floor-plan-item-booked.booking-floor-plan-item-table:hover {
  background: rgba(200, 120, 60, 0.55);
}
.booking-floor-plan-item-booked.booking-floor-plan-item-vip {
  background: rgba(140, 80, 120, 0.45);
  border-color: rgba(140, 80, 120, 0.75);
}
.booking-floor-plan-item-booked.booking-floor-plan-item-vip:hover {
  background: rgba(140, 80, 120, 0.6);
}
.booking-floor-plan-item-booked .booking-item-until {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.95;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.booking-floor-plan-item-wall {
  background: #555;
  pointer-events: none;
}
.booking-floor-plan-item-door {
  background: #6b4423;
  border: 1px solid #8b5a2b;
  pointer-events: none;
}
.booking-floor-plan-item-window {
  background: rgba(100, 180, 255, 0.4);
  border: 1px solid rgba(100, 180, 255, 0.7);
  pointer-events: none;
}
.booking-floor-plan-item-column {
  background: #333;
  border: 1px solid #444;
  border-radius: 6px;
  pointer-events: none;
}
.booking-floor-plan-item-area {
  background: rgba(255, 200, 80, 0.15);
  border: 1px dashed rgba(255, 200, 80, 0.5);
  color: #e6c04a;
  pointer-events: none;
}
.booking-book-popover {
  position: fixed;
  z-index: 1002;
  padding: 8px;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.booking-book-popover[hidden] {
  display: none !important;
}
.booking-book-popover-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: var(--bots-green);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.booking-book-popover-btn:hover {
  filter: brightness(1.1);
}
.booking-book-popover-btn + .booking-book-popover-btn {
  margin-top: 8px;
}
.booking-book-popover-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.booking-book-popover-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.booking-place-bookings-hint {
  font-size: 14px;
  color: #888;
  margin: 0 0 12px 0;
}
.booking-place-bookings-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  max-height: 280px;
  overflow-y: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}
.booking-place-booking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.booking-place-booking-item:last-child {
  border-bottom: none;
}
.booking-place-booking-info { flex: 1; min-width: 0; }
.booking-place-booking-actions { display: flex; gap: 8px; flex-shrink: 0; }
.booking-place-btn {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}
.booking-place-btn:hover { border-color: var(--bots-green); color: var(--bots-green); }
.booking-place-btn-edit { background: rgba(60, 255, 195, 0.2); color: var(--bots-green); border-color: rgba(60, 255, 195, 0.4); }
.booking-place-btn-edit:hover { background: rgba(60, 255, 195, 0.3); }
.booking-place-bookings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.booking-place-bookings-actions .booking-vip-cancel-btn {
  text-decoration: none;
}

/* Модалка «Список броней» в боте */
.booking-list-modal-overlay .bots-modal {
  max-width: 480px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.booking-list-modal-overlay .bots-modal-body {
  overflow-y: auto;
  flex: 1;
}
.booking-list-block {
  margin-bottom: 20px;
}
.booking-list-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.booking-list-block-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.booking-list-refresh-btn {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(60, 255, 195, 0.15);
  color: var(--bots-green);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}
.booking-list-refresh-btn:hover {
  background: rgba(60, 255, 195, 0.25);
}
.booking-list-empty {
  font-size: 14px;
  color: #888;
  margin: 0;
  padding: 16px 0;
}
.booking-list-active-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.booking-list-active-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}
.booking-list-active-item:last-child { border-bottom: none; }
.booking-list-active-item-place { font-weight: 600; color: var(--bots-green); margin-bottom: 4px; }
.booking-list-active-item-meta { color: #aaa; font-size: 13px; }
.booking-list-active-item-actions { display: flex; gap: 8px; flex-shrink: 0; }
.booking-list-active-item-actions .btn-list-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  cursor: pointer;
  font-family: inherit;
}
.booking-list-active-item-actions .btn-list-sm:hover { border-color: var(--bots-green); color: var(--bots-green); }
.booking-list-active-item-actions .btn-list-sm.btn-list-primary { background: var(--bots-green); color: #000; border-color: var(--bots-green); }

.booking-list-archive {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}
.booking-list-archive-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.booking-list-archive-head:hover { background: rgba(60, 255, 195, 0.08); }
.booking-list-archive-chevron {
  color: var(--bots-green);
  font-size: 14px;
  transition: transform 0.2s;
}
.booking-list-archive.open .booking-list-archive-chevron { transform: rotate(180deg); }
.booking-list-archive-body { display: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.booking-list-archive.open .booking-list-archive-body { display: block; }
.booking-list-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}
.booking-list-archive-item {
  padding: 12px 16px;
  font-size: 13px;
  color: #aaa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.booking-list-archive-item .place { color: var(--bots-green); font-weight: 600; }
.booking-list-archive-item .status-cancelled { color: #f87171; }
.booking-list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.booking-list-pagination button {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ddd;
  cursor: pointer;
  font-family: inherit;
}
.booking-list-pagination button:hover:not(:disabled) { border-color: var(--bots-green); color: var(--bots-green); }
.booking-list-pagination button:disabled { opacity: 0.5; cursor: not-allowed; }
.booking-list-pagination span { font-size: 12px; color: #888; }

.profile-bot-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  background: var(--bots-green);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 90%;
}
.profile-bot-toast-err {
  background: rgba(220, 80, 80, 0.95);
  color: #fff;
}
