/* ------------------------------------------------------
   BenCode Booking — Full Calendar Picker UI
   ------------------------------------------------------ */

.bencode-calendar-wrapper {
  max-width: 420px;
  margin: 0 auto 30px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.bencode-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bencode-calendar-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.bencode-calendar-nav button {
  background: #6a1b9a;
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.bencode-calendar-nav button:hover {
  background: #520f7a;
}

.bencode-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.bencode-calendar-day {
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.bencode-calendar-day:hover {
  background: #f3e5f5;
}

.bencode-calendar-day.disabled {
  color: #bbb;
  pointer-events: none;
}

.bencode-calendar-day.selected {
  background: #6a1b9a;
  color: #fff;
}

.bencode-time-slots {
  margin-top: 20px;
}

.bencode-time-slots h4 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.bencode-slot {
  background: #f7f7f7;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}

.bencode-slot:hover {
  background: #ececec;
}

.bencode-slot.selected {
  background: #6a1b9a;
  color: #fff;
}
