#rfbl-booking-ui {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  font-family: "Inter","Lato",sans-serif;
}

.rfbl-calendar-panel, .rfbl-slots-panel, .rfbl-form-panel {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.rfbl-title, .rfbl-day-label, .rfbl-form-panel h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #081f7c;
  margin-bottom: 1rem;
}

.rfbl-timezone {
  font-size: .9rem;
  color: #555;
  margin-top: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.rfbl-times-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .5rem;
}

.rfbl-time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-weight: 600;
  color: #1848a0;
  cursor: pointer;
  transition: all .2s ease;
}
.rfbl-time-slot:hover {
  border-color: #1848a0;
  background: #f4faff;
}
.rfbl-time-slot.active {
  background: #1848a0;
  color: #fff;
}
.rfbl-time-slot .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #74e602;
}

#rfbl-form .field { margin-bottom: 1rem; }
#rfbl-form input {
  width: 100%;
  padding: .6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.rfbl-book-btn {
  background: #74e602;
  color: #081f7c;
  border: none;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.rfbl-book-btn:hover {
  background: #6bd000;
}

#rfbl-result {
  margin-top: .8rem;
  font-weight: 600;
}

/* ✅ Layout en escritorio */
@media (min-width: 900px) {
  #rfbl-booking-ui {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
  }
  .rfbl-calendar-panel, .rfbl-slots-panel, .rfbl-form-panel {
    flex: 1;
    max-width: 340px;
  }
}