body { padding-bottom: 40px; }

/* Navegación Mejorada */
.nav-link-enhanced {
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
}

.nav-link-enhanced i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    transition: transform 0.2s ease;
}

.nav-link-enhanced .nav-text {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
}

.nav-link-enhanced:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-link-enhanced:hover i {
    transform: scale(1.15);
}

.nav-link-enhanced.active {
    background-color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

/* Navbar con mejor espaciado */
.navbar-nav.nav-pills-custom {
    gap: 0.5rem;
}

/* Responsive - móvil */
@media (max-width: 992px) {
    .nav-link-enhanced {
        flex-direction: row;
        justify-content: flex-start;
        min-width: auto;
        width: 100%;
    }
    
    .nav-link-enhanced i {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }
    
    .nav-link-enhanced .nav-text {
        font-size: 1rem;
    }
}

/* Force dark text in entregadas table - ULTRA SPECIFIC */
table.table td.text-dark,
table.table td.text-dark *,
table.table td.text-dark strong,
table.table td.text-dark code,
table.table td.text-dark span,
table.table tbody td.text-dark,
table.table-hover tbody td.text-dark,
table.table-striped tbody td.text-dark {
    color: #212529 !important;
    background-color: transparent !important;
}

/* Additional force for all table cells regardless of class */
table.table tbody td {
    color: #212529 !important;
}
