/* Form confirmation (server-rendered) - styled to match Elements-of-a-Successful-Form-Message.webp */

.ths-form-confirmation {
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1rem;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 122, 58, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 238, 0.9));
  box-shadow: 0 18px 50px rgba(118, 42, 168, 0.12);
}

.ths-form-confirmation-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 122, 58, 0.12);
  border: 1px solid rgba(15, 122, 58, 0.22);
  color: #0f7a3a;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

.ths-form-confirmation-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0,0,0,0.78);
  font-weight: 600;
}

/* Make it match the booking card width */
.booking-card .ths-form-confirmation {
  max-width: 100%;
}

