/* Standard Digitals Booking Form */

#sdbp-booking-form {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

#sdbp-booking-form h3 {
  margin-bottom: 20px;
  text-align: center;
}

#sdbp-booking-form input,
#sdbp-booking-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#sdbp-booking-form button {
  width: 100%;
  padding: 12px;
  background: #2e7dff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

#sdbp-booking-form button:hover {
  background: #1c5ed6;
}

/* Calendar UI */

#sd-calendar {
  max-width: 900px;
  margin: 40px auto;
}

/* Slot Buttons */

.sdbp-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sdbp-slot {
  padding: 8px 12px;
  background: #f1f3f7;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.sdbp-slot:hover {
  background: #2e7dff;
  color: white;
}

/* Booked Slot */

.sdbp-slot.booked {
  background: #ccc;
  cursor: not-allowed;
}