/* Reset all previous navbar styles */
.navbar {
    padding: 0 !important;
    margin: 0 !important;
    background-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    position: fixed !important;
    width: 100% !important;
    z-index: 1000 !important;
}

/* Container styles */
.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 5px 15px !important;
    height: 100px !important;
}

/* Brand styles */
.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 90px !important;
}

/* Logo container */
.logo-container {
    width: 90px !important;
    height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* Logo image */
.navbar-logo {
    width: auto !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    aspect-ratio: 1/1 !important;
}

/* Styles for screens 991px and smaller */
@media (max-width: 991px) {
    .navbar .container {
        height: 80px !important;
        padding: 5px 10px !important;
    }

    .navbar-brand {
        height: 70px !important;
    }

    .logo-container {
        width: 70px !important;
        height: 70px !important;
    }

    .navbar-toggler {
        padding: 4px !important;
        margin-right: 0 !important;
    }

    .navbar-collapse {
        top: 80px !important;
    }
}
