/* informacion.css */

/* Estilos generales para SweetAlert */


.informacion-container {
    width: 100%;
}

.titulo-swal {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.opciones-swal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.btn-swal {
    font-size: 1.05rem;
    padding: 16px;
    border-radius: 14px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}





.btn-icon {
    font-size: 1.1em;
}

/* Botones por tipo */
.btn-primary {
    background: rgb(0, 64, 255);
    color: white;
}

.btn-secondary {
       background: rgb(0, 255, 85);
    color: white;
}

.btn-success {
      background: red;
    color: white;
}
.btn-sea {
      background: #178236;
    color: #7BF1A8;
        margin-top: 5px !important;
}


.btn-cancelar {
    background: #FFD230 !important;
    color: #101828 !important;
 
    margin-top: 5px;
}

.btn-estudiante {
    background: #1447E6 !important;   /* azul fuerte */
    color: #DBEAFE !important;        /* azul muy claro (mejor contraste) */
    margin-top: 5px;
}


.btn-seccion {
    background: #9810FA !important;   /* morado fuerte */
    color: #F3DAFF !important;        /* morado muy claro, alto contraste */
    margin-top: 5px !important;
}



.btn-profesor {
    background: #35530E !important;
    color: #BBF451 !important;
 
    margin-top: 5px !important;
}

.btn-subir {
    background: #FB2C36 !important;
    color: #FFC9C9 !important;
 
    margin-top: 5px !important;
}



.btn-back {
    background: blue;
    color: white;
    margin-bottom: 5px;
}

.btn-back:hover {
    background: #7a8996;
}

/* Estilos para la ventana de Instituciones */
.instituciones-info {
    text-align: center;
}

.info-text {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

.info-box {
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}





.info-label {
    margin: 5px 0;
    font-weight: bold;

}

.info-value {
    margin: 5px 0;
    font-size: 1.1em;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .swal-movil {
        padding: 18px 12px;
        width: 98% !important;
        margin: 0 auto;
    }
    
    .titulo-swal {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .btn-swal {
        font-size: 1rem;
        padding: 14px 12px;
        border-radius: 12px;
    }
    
    .opciones-swal {
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .swal-movil {
        padding: 15px 10px;
    }
    
    .titulo-swal {
        font-size: 1rem;
    }
    
    .btn-swal {
        font-size: 0.95rem;
        padding: 12px 10px;
    }
    
    .btn-icon {
        font-size: 1em;
    }
}