/* Estilos Compartidos para Navbars Mobile (Profe y Tutor) */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px; /* Súper compacta */
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.08);
    z-index: 1050;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
    text-decoration: none !important;
    color: #6c757d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2px 0; /* Padding vertical a 2px como pediste */
    transition: all 0.2s ease;
}

.mobile-nav-item i {
    font-size: 1.25rem;
    line-height: 1;
}

.mobile-nav-item span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Colores por Rol */
.mobile-nav-item.active-admin { color: #198754; } /* Ahora Verde como el Tutor */
.mobile-nav-item.active-tutor { color: #198754; } /* Verde para Tutor */

/* Espaciador dinámico ajustado a la altura exacta */
@media (max-width: 991.98px) {
    body.mb-nav-spacer {
        padding-bottom: 56px !important;
    }
}

/* Ocultar en PC */
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}
