/* Additional utility fixes if needed */
/* This file can be used for additional navbar fixes if needed */

/* Fix logo blurriness and stretching */
.nav-logo,
.footer-logo {
    filter: none !important;
    -webkit-filter: none !important;
    width: auto !important;
    max-width: 250px !important;
    height: auto !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
}

.nav-logo {
    max-height: 85px !important;
}

.footer-logo {
    max-height: 75px !important;
}

/* Mobile Navbar Brute Force Fixes */
@media (max-width: 992px) {
    #navMenu:not(.active) {
        display: none !important;
    }

    #navMenu.active {
        display: flex !important;
        flex-direction: column !important;
    }

    .worldclass-navbar {
        height: auto !important;
        min-height: 90px !important;
        padding: 5px 0 !important;
    }
}

/* Table Responsive Utility */
.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 1rem !important;
}

.table th,
.table td {
    min-width: 120px;
    /* Ensure some breathing room */
}