.tp-booking{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow: 0 10px 28px rgba(20,40,120,.08);
}

.tp-booking__top{
  display:flex;
  gap:12px;
  align-items:flex-end;
  flex-wrap:wrap;
}

.tp-booking__date label{
  display:block;
  font-weight:800;
  margin-bottom:6px;
}

.tp-booking__date-input{
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:12px;
  width: 220px;
  max-width: 100%;
}

.tp-booking__hint{
  margin-top:6px;
  color:#666;
  font-size:12px;
}

.tp-booking__slots{
  margin-top:16px;
}

.tp-booking__slots-title{
  font-weight:800;
  margin-bottom:10px;
}

.tp-booking__slots-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tp-slot{
  padding:10px 12px;
  border:1px solid #d7ddff;
  background:#f4f7ff;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
}

.tp-slot.is-selected{
  background:#0b1b63;
  border-color:#0b1b63;
  color:#fff;
}

.tp-booking__slots-empty{
  color:#666;
  margin-top:8px;
}

.tp-booking__form{
  margin-top:16px;
  border-top:1px solid #eee;
  padding-top:16px;
}

.tp-booking__form-title{
  font-weight:800;
  margin-bottom:10px;
}

.tp-booking__fields{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.tp-booking__fields input,
.tp-booking__fields textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid #ddd;
  border-radius:12px;
}

.tp-booking__fields textarea{
  grid-column: 1 / -1;
  min-height: 92px;
  resize: vertical;
}

.tp-booking__submit{
  margin-top:12px;
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #0b1b63;
  background:#0b1b63;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.tp-booking__submit:disabled{
  opacity:.5;
  cursor:not-allowed;
}

.tp-booking__result{
  margin-top:10px;
  font-weight:800;
}

.tp-booking__result.is-success{ color: #0a7a2f; }
.tp-booking__result.is-error{ color: #b00020; }

.tp-booking.is-loading{
  opacity: .85;
}

/* Responsive */
@media (max-width: 860px){
  .tp-booking__fields{
    grid-template-columns: 1fr;
  }
  .tp-booking__date-input{
    width: 100%;
  }
}
.tp-praticien-booking {
  margin-top: 60px;
  padding: 40px 0;
  background: #f7f9ff;
}

.tp-praticien-booking__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.tp-praticien-booking h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 900;
}


