/* Estilos del bloque inyectado */
.custom-booking-footer {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px dashed #e2e8f0; /* Un separador elegante estilo cupón/ticket */
    text-align: center;
}

/* Imagen del logo */
.booking-logo-final {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* Bloque de dirección */
.booking-address-final {
    font-style: normal;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.booking-subtext {
    font-size: 12px;
    color: #718096;
    display: block;
    margin-top: 4px;
}

/* Caja contenedora de botones */
.booking-actions-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Botones Base */
.btn-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Botón Imprimir (Diseño neutro/limpio) */
.btn-print {
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}
.btn-print:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

/* Botón Google Agenda (Usa el color azul corporativo o el de tu marca) */
.btn-calendar {
    background-color: #2563eb; /* Azul moderno, adaptable a tus estilos */
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}
.btn-calendar:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 6px rgba(29, 78, 216, 0.3);
}

.btn-booking:active {
    transform: scale(0.97);
}

/* ==========================================
   REGLAS EXCLUSIVAS DE IMPRESIÓN
   ========================================== */
@media print {
    /* Ocultamos los botones de acción para que el papel salga limpio */
    .booking-actions-container, 
    .btn-booking {
        display: none !important;
    }
    
    /* Forzar que el fondo no tenga sombras extrañas de la web del tercero */
    .w-full.success {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
}