/* Logo Fix CSS - Ensures logo stays within navbar */

/* Increase navbar height */
.navbar {
    min-height: 70px !important;
    height: 70px !important;
    overflow: visible !important;
}

/* Ensure container maintains proper height */
.navbar .container-fluid {
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
}

/* Proper flexbox styling for navbar-brand */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Set logo dimensions */
.navbar-brand img {
    height: 45px !important;
    max-height: 45px !important;
    width: auto !important;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px !important;
        max-height: 40px !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        height: 35px !important;
        max-height: 35px !important;
    }
}