css/* ==========================================
   0. IMPORTACIÓN DE LA FUENTE TODAY-SHOP
   ========================================== */
@font-face {
    font-family: 'Today-Shop';
    /* Reemplaza la URL de abajo por el enlace directo a tu archivo de fuente */
    src: url('https://drive.google.com/file/d/1ZpRTSpOcXEuHBRGB5TeDdMYN0_GwD6ID/view?usp=sharing') format('otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   1. FONDO Y CONTENEDOR PRINCIPAL
   ========================================== */
/* Fondo general de toda la página de reservas y tipografía universal */
body.booking-page-body, 
.booking-container-wrapper,
body.booking-page-body *, 
.booking-container-wrapper * {
    font-family: 'Today-Shop', 'Helvetica Neue', Arial, sans-serif !important;
}

body.booking-page-body, 
.booking-container-wrapper {
    background-color: #f8f9fa !important;
}

/* Caja principal que envuelve el flujo de reserva */
.booking-container {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e9ecef !important;
    padding: 20px !important;
}

/* ==========================================
   2. TARJETAS DE SERVICIOS Y PROVEEDORES
   ========================================== */
/* Cajas de servicios, clases o empleados */
.service-item-box, 
.provider-item-box {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease-in-out !important;
}

/* Efecto al pasar el cursor sobre un servicio */
.service-item-box:hover, 
.provider-item-box:hover {
    border-color: #3b82f6 !important; /* Cambia al color de tu marca */
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1) !important;
}

/* Títulos de los servicios */
.service-item-title, 
.provider-item-title {
    color: #1e293b !important;
    font-weight: 600 !important;
}

/* ==========================================
   3. CALENDARIO Y RECUADROS DE HORAS
   ========================================== */
/* Días del calendario (Celdas estándar) */
.calendar-day-cell {
    border-radius: 6px !important;
    color: #334155 !important;
}

/* Día seleccionado actualmente en el calendario */
.calendar-day-cell.selected-day, 
.calendar-day-cell.active {
    background-color: #3b82f6 !important; /* Color principal */
    color: #ffffff !important;
}

/* Botón de franja horaria (Hora disponible para agendar) */
.time-slot-item {
    background-color: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
}

/* Hora seleccionada por el cliente */
.time-slot-item.selected, 
.time-slot-item.active {
    background-color: #10b981 !important; /* Color verde de éxito o tu color */
    color: #ffffff !important;
    border-color: #10b981 !important;
}

/* ==========================================
   4. BOTONES DE ACCIÓN (SIGUIENTE / CONFIRMAR)
   ========================================== */
/* Botón principal (Siguiente, Confirmar Reserva) */
.btn-booking-next, 
.btn-submit,
.sb-btn-primary {
    background-color: #3b82f6 !important; /* Pon aquí el color de tu marca */
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Efecto hover del botón principal */
.btn-booking-next:hover, 
.btn-submit:hover,
.sb-btn-primary:hover {
    background-color: #1d4ed8 !important; /* Color un poco más oscuro para el efecto */
    cursor: pointer !important;
}

/* Botón de regresar / volver atrás */
.btn-booking-back,
.sb-btn-secondary {
    background-color: transparent !important;
    color: #64748b !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
}

/* ==========================================
   5. CAMPOS DEL FORMULARIO DE RESERVA
   ========================================== */
/* Campos de texto (Nombre, Email, Teléfono) */
.booking-form-input, 
.form-control {
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 10px !important;
    color: #334155 !important;
}

/* Campo de texto cuando el usuario hace clic para escribir */
.booking-form-input:focus, 
.form-control:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
    outline: none !important;
}

/* ==========================================
   6. LIMPIEZA VISUAL (OCULTAR EXTRAS)
   ========================================== */
/* Ocultar el logotipo o pie de página con derechos de autor si es necesario */
.booking-footer-brand, 
.sb-brand-footer {
    display: none !important;
}