/* Contenedor Principal Naranja */
.agenda-box.online-variant {
    max-width: 450px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
    border-top: 8px solid #FF8C00;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

#online-titulo { 
    color: #FF8C00; 
    text-align: center; 
    margin-bottom: 25px; 
    font-size: 24px;
}

.agenda-box label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 8px; 
    color: #555; 
}

/* Inputs y Selects */
.agenda-box input, .agenda-box select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #FFE5CC; /* Bordes naranja muy claros */
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    transition: 0.3s;
}

.agenda-box input:focus, .agenda-box select:focus { 
    border-color: #FF8C00; 
    outline: none;
    background: #FFF9F2;
}

/* Estilo para el horario fijo */
.input-fijo-naranja {
    background: #FFF5E6 !important;
    font-weight: bold;
    color: #E67E22 !important;
    border-color: #FFD580 !important;
    cursor: default;
}

/* Cuadro de información de cupos */
#online-info-box {
    background: #FFF5E6;
    color: #E67E22;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #FFD580;
}

/* Botón de Acción */
#online_submit_btn {
    width: 100%;
    padding: 18px;
    background: #FF8C00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: 0.3s ease;
}

#online_submit_btn:hover { 
    background: #E67E22;
    transform: translateY(-2px);
}

/* Éxito */
.success-icon-naranja {
    background: #FF8C00;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 30px;
}