body {
    background: #1e2a5a;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.card-asistencia {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-maranata {
    background: #ffcc00;
    color: #1e2a5a;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

.btn-maranata:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.btn-primary-m {
    background: #0d6efd;
    color: white;
    border: none;
    font-weight: bold;
}

.text-maranata {
    color: #1e2a5a;
}
.btn-primary-m:hover{
   background: #e6b800;
    transform: translateY(-2px); 
}
/* Estilos base para el logo */
.logo-img {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

/* Ajustes específicos para Celulares (pantallas menores a 768px) */
@media (max-width: 767px) {
    body {
        /* Si tenías un display: flex para centrar verticalmente, lo quitamos en móvil */
        display: block !important; 
        padding-top: 20px;
    }

    .container {
        padding-top: 0 !important;
    }

    .logo-img {
        max-width: 130px; /* Logo un poco más pequeño en móvil para subir el resto */
        margin-top: 10px;
    }

    .card-asistencia {
        margin-top: 5px;
        padding: 1.5rem !important; /* Reducimos un poco el padding interno de la card */
    }

    h2.text-maranata {
        font-size: 1.5rem; /* Título un poco más pequeño */
    }
}
