body {
    height: 100vh!important;
}

/* Estilos personalizados para el sistema de citas */
.appointment-container {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Panel del educador */
.educator-panel {
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.educator-photo-wrap {
    flex-shrink: 0;
}

.educator-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

.educator-label {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
}

.educator-name {
    font-size: 18px;
    color: #343a40;
    font-weight: 600;
}

.educator-headline h3 {
    font-size: 34px;
    color: #495057;
    font-weight: 600;
    line-height: 1.4;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.right-pane {
    flex-grow: 1;
    max-width: calc(100% - 380px); /* o incluso 360px */
}
.left-pane {
    width: 360px; /* antes 420px */
}
.appointment-layout-guide {
    display: flex;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Para full width real */
}
/* Columna izquierda full width */
.left-column-guide {
    width: 50%;
    background: #ffffff;
    padding-top: 95px;
}

/* Contenido interno alineado EXACTAMENTE al logo */
.left-column-guide .inner-container {
    padding-left: max(calc((95vw - 1200px) / 2), 85px);
    padding-right: 20px;
}

/* Columna derecha */
.right-column-guide {
    width: 70%;
    background: #f8f9fa;
    padding-top: 30px;
}

/* Wizard interno centrado */
.right-column-guide .inner-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

/* Contenido del wizard */
.right-column-guide .inner-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-right: max(calc((92vw - 1200px) / 2), 90px);
}

.wizard-panel {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.benefits-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #495057;
    line-height: 1.5;
    font-size: 20px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.educator-footer {
    font-size: 25px;
    color: #6c757d;
}

/* Panel del wizard */
.wizard-panel {
    border-radius: 12px;
}

/* Barra de pasos */
.appointment-steps {
    position: relative;
    padding: 0 0 25px 0;
}

.appointment-steps:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    flex: 1;
    justify-content: center;
}

.step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e9ecef;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #f3b607;
    border-color: #f3b607;
}

.step:first-child {
    justify-content: flex-start;
    flex-direction: column;
    max-width: 18%;
}

.step:nth-child(2) {
    justify-content: flex-start;
    flex-direction: column;
    max-width: 18%;
}

.step:last-child {
    justify-content: flex-end;
    flex-direction: column;
    max-width: 18%;
}

/* Contenido de pasos */
.step-title {
    color: #343a40;
    font-weight: 300;
    text-align: left;
    margin-bottom: 20px;
    font-size: 20px;
}

/* Calendario tamaño medio - MÁS GRANDE que el compacto pero no gigante */
.calendar-card {
    border: none!important;
    background: white !important;
    padding: 25px !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-top: 15px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #6c757d;
    padding: 8px 2px;
    text-transform: uppercase;
    background: #f8f9fa;
    border-radius: 4px;
}

.calendar-day {
    aspect-ratio: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    background: white;
    font-size: 14px;
    min-height: 47px;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    background: #f3b607;
    color: white;
    border-color: #f3b607;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #f3b607;
    color: white;
    border-color: #f3b607;
    font-weight: 600;
    transform: scale(1.05);
}

.calendar-day.disabled {
    color: #adb5bd;
    cursor: not-allowed;
    background: #f8f9fa;
    opacity: 0.6;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
    border: none;
}

/* Navegación del calendario */
.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.month-title {
    font-weight: 600;
    color: #343a40;
    font-size: 17px;
    margin: 0 12px;
    min-width: 160px;
    text-align: center;
}

.nav-button {
    padding: 6px 10px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
}

.nav-button svg {
    width: 16px;
    height: 16px;
}

/* Estilos específicos para fines de semana */
.calendar-day.weekend {
    background: #f8f9fa;
    color: #adb5bd;
    position: relative;
}

.calendar-day.weekend::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: #dc3545;
    border-radius: 50%;
}

.calendar-day-header:nth-child(6),
.calendar-day-header:nth-child(7) {
    color: #dc3545;
    font-weight: 600;
}

/* Horarios */
.time-card, .form-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.time-group-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.time-slots-grid {
    grid-template-columns: 1fr;
}

.time-slot {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    font-weight: 500;
    padding: 12px 10px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.time-slot:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #adb5bd;
}

.time-slot.selected {
    background: #f3b607;
    color: white;
    border-color: #f3b607;
}

.time-slot:disabled {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Formulario */
.form-input {
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.checkbox-container {
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 0.2rem;
}
.form-container-guide{
        display: flex;
    flex-direction: column;
    align-items: center!important;
}

/* Textos informativos */
.selected-date {
    text-align: center;
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 20px;
}

.appointment-summary {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #f3b607;
}

/* Botones */
.btn-next, #submit-btn {
    min-width: 120px;
}

.step-actions {
    margin-top: 10px;
}

.button-yellow {
    border: solid 1px #f3b607!important;
}

.button-yellow:hover{
    background-color: #fedb75;
}

.button-yellow:disabled{
    border: solid 1px #878787!important;
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-steps:before {
        left: 30px;
        right: 30px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-card {
        max-width: 100%;
        padding: 20px !important;
    }
    
    .step-title {
        font-size: 18px;
    }

    .left-column-guide, .right-column-guide {
        width: 100%;
    }
    .appointment-layout-guide {
        flex-direction: column;
    }
    .right-column-guide .inner-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 10px 40px 40px 40px;
    }
    .step:first-child, .step:nth-child(2), .step:last-child  {
        max-width: 13%;
    }
}

@media (max-width: 575px) {
    .educator-panel, .wizard-panel {
        padding: 20px !important;
    }
    
    .calendar-day {
        min-height: 35px;
        font-size: 13px;
        aspect-ratio: 1.2;
    }
    
    .calendar-day-header {
        font-size: 11px;
        padding: 6px 1px;
    }
    
    .month-title {
        font-size: 16px;
        min-width: 140px;
    }
    
    .time-slot {
        font-size: 13px;
        padding: 10px 8px;
    }
    
    .appointment-steps:before {
        left: 20px;
        right: 20px;
    }
    .appointment-layout-guide {
        flex-direction: column;
    }
    .left-column-guide {
        padding-top: 65px;
    }
    .left-column-guide, .right-column-guide {
        width: 100%;
    }
    .left-column-guide .inner-container {
        padding-left: 0;
        padding-right: 0;
    }
    .right-column-guide .inner-container {
        padding: 0;
    }
}

@media (min-width: 992px) {
    #step-1 {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 993px) and (max-width: 1300px) {
    .calendar-day {
        aspect-ratio: 1;
    }
}

/* Estados de los pasos */
.step-content {
    transition: all 0.3s ease;
}

.step-content:not(.active) {
    display: none !important;
}

/* Mejoras visuales generales */
.btn {
    font-weight: 500;
}

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 6px;
    font-size: 14px;
}

/* Asegurar que todo esté alineado correctamente */
.wizard-panel .row {
    align-items: stretch;
}

.educator-panel > *:last-child {
    margin-top: auto;
}