/* Estilos extraídos de estilos.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    /* background-image: url(imagenes/logo1.png);
    background-size: 70px; */
}

header {
    background-color: #0f51d5;
    width: 100%;
    text-align: center;
    padding: 20px;
    color: white;
    margin-bottom: 10px;
}

h1 {
    text-shadow: rgb(139, 138, 138) 3px 3px 5px;
}

main {
    width: 90%; /* Ajuste para que el contenido no quede tan pegado a los bordes en pantallas pequeñas */
    max-width: 600px; /* Limita el ancho máximo en pantallas grandes */
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    margin: 0;
}

.input-disabled {
    max-width: 50px;
    text-align: center;
}

.asterisco {
    color: rgb(239, 51, 51);
    font-weight: bold;
}

select, input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.hidden {
    display: none;
}

.btn-select-turno {
    margin-left: 10px;
}

.modal-body {
    text-align: center;
}

.modal-header {
    background-color: rgb(15, 81, 213);
    color: aliceblue;
}

.logo img {
    width: 100%;
    max-width: 300px; /* Tamaño máximo en pantallas pequeñas */
    height: auto; /* Mantener la proporción de la imagen */
}

.modal-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 20px;
}

.modal-body {
    padding: 25px;
    font-size: 1.05rem;
}

/* Estilos para calendario de turno castigo */
/* Estilo para fechas bloqueadas por castigo */
.ui-datepicker td.castigo-bloqueado a {
    background-color: #ffcccc !important;
    color: #cc0000 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
    opacity: 0.6;
}

.ui-datepicker td.castigo-bloqueado:hover a {
    background-color: #ff9999 !important;
}

/*  Estilos para el botón de Ir Al Mi panel en reserva de turno */
/* ========================================
 /* ========================================
   BOTÓN VOLVER A MI PANEL
   ======================================== */

.header-buttons {
    display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.btn-volver-panel i {
    font-size: 1.2rem;
}

.familiar-selector-item {
    transition: all 0.3s ease;
}

.familiar-selector-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#mensaje-confirmacion p {
    margin-bottom: 15px;
}

*/

#mensaje-confirmacion li {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f2f2f4;
    border-radius: 5px;
}

/* Estilos para el panel de Mi turno Actual */
/* Asegurar que las tarjetas tengan la misma altura */
.card-turno.h-100 {
    height: 100%;
}

@media (max-width: 768px) {
    header {
        padding: 15px;
    }
    main {
        width: 95%; /* Aumentar el ancho para pantallas más pequeñas */
        padding: 15px; /* Reducir el padding */
    }
    select, input[type="text"], input[type="email"], textarea {
        font-size: 14px; /* Reducir el tamaño de fuente para pantallas pequeñas */
    }
    .logo img {
        max-width: 250px; /* Tamaño máximo en pantallas medianas */
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    main {
        width: 100%; /* Ancho completo para teléfonos pequeños */
        padding: 10px; /* Reducir el padding aún más */
    }
    select, input[type="text"], input[type="email"], textarea {
        font-size: 12px; /* Reducir aún más el tamaño de fuente */
    }
    .logo img {
        max-width: 200px; /* Tamaño máximo en pantallas pequeñas */
    }
}

@media (max-width: 768px) {
    .header-buttons {
        gap: 12px;
    margin-top: 8px;
    }
    header h1 {
        font-size: 1.5rem;
    margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .btn-volver-panel i {
        font-size: 1rem;
    }
    .header-buttons {
        gap: 10px;
    }
}

/* Estilos internos originales */

        body {
            background: linear-gradient(135deg, #0f51d5 0%, #1e88e5 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Arial, sans-serif;
        }
        .recovery-container {
            max-width: 500px;
            width: 100%;
            padding: 30px;
            margin: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }
        .logo-container img {
            max-width: 120px;
            margin-bottom: 15px;
        }
        .icon-large {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        .step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #6c757d;
            margin: 0 10px;
            position: relative;
        }
        .step::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: #e9ecef;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
        }
        .step:last-child::after {
            display: none;
        }
        .step.active {
            background: #0f51d5;
            color: white;
        }
        .step.completed {
            background: #28a745;
            color: white;
        }
        .step.completed::after {
            background: #28a745;
        }
        .asterisco {
            color: #dc3545;
            font-weight: bold;
        }
        .hidden {
            display: none;
        }
        .phone-hint {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 5px;
        }
        .security-icon {
            color: #28a745;
        }

/* Ocultar el placeholder cuando el campo está enfocado */
input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
}
    
