/**
 * Reservo Custom — Estilos para el bloque de éxito
 * Archivo CSS para subir en el panel de personalización de Reservo (pestaña "CSS").
 * Estiliza los botones de Imprimir, Google Agenda y el resumen de la cita.
 */

/* Contenedor principal inyectado al finalizar la reserva */
.custom-booking-footer {
  margin-top: 24px;
  padding: 24px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e8f0ed;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Logo del centro */
.booking-branding {
  margin-bottom: 16px;
}

.booking-logo-final {
  width: 160px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

/* Resumen de la cita */
.booking-summary {
  text-align: left;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.booking-summary p {
  margin: 4px 0;
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

.booking-summary strong {
  color: #1e293b;
}

/* Dirección de atención */
.booking-address-final {
  font-style: normal;
  background: #f0fdf4;
  border: 1px dashed #bbf7d0;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #166534;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.6;
}

.booking-address-final strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

/* Contenedor de botones */
.booking-actions-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botones base */
.btn-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Botón Imprimir */
.btn-print {
  background: #e2e8f0;
  color: #334155;
}

.btn-print:hover {
  background: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Botón Google Calendar */
.btn-calendar {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.15);
}

.btn-calendar:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(29, 78, 216, 0.25);
  color: #fff;
  text-decoration: none;
}

/* Reglas de impresión: ocultar botones al imprimir */
@media print {
  .booking-actions-container {
    display: none;
  }
}