.page-wizard .wizard-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeIn .3s ease;
}

.page-wizard .option-card {
    position: relative;
    display: block;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    transition: .2s;
}

.page-wizard .option-card.selected {
    border-color: #004085;
    background: #e8f1ff;
}

/* Radio dentro de la tarjeta */
.page-wizard .option-card input[type="radio"] {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.page-wizard .option-card input[type="radio"]:checked+h5 {
    font-weight: 600;
}

.page-wizard .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.page-wizard .loading-content {
    text-align: center;
    color: white;
}

.page-wizard .loading-icon {
    width: 140px;
    margin-bottom: 140px;
}

.page-wizard .d-none {
    display: none !important;
}

.page-wizard .alerta-paso-vacio {
    padding: 12px;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
}

.page-wizard .input-bloqueo-paso {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Fondo azul solo para esta página */
.page-wizard {
    background-color: #2a69b7;
}

.page-wizard .appointment-window {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.page-wizard .wizard {
    padding: 0;
}

.page-wizard .wizard-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: none;
    animation: fadeIn .3s ease;
}

/*Estilos para la pagina de cancelaciones*/
.page-cancelaciones {
    background-color: #f5f7fb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-cancelaciones .page-wrapper {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.page-cancelaciones .confirm-card {
    max-width: 600px;
    width: 100%;
}

.page-cancelaciones footer {
    flex-shrink: 0;
}