.header.content {
    display: none !important;
}

header.page-header {
    background-color: #1979C3 !important;
    border-bottom: 2px solid white;
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #1979C3;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-logo {
    max-width: 200px;
    height: auto;
    padding: 0px 5px;
}

.navbar-middle {
    position: relative;
}

.navbar-search {
    padding: 10px 15px;
    flex-grow: 1;
    width: 600px !important;
    color: white;
}

input.navbar-search::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: white;
}

input.navbar-search::-moz-placeholder {
    /* Firefox 19+ */
    color: white;
    opacity: 1;
    /* Firefox has a lower opacity on placeholder by default */
}

input.navbar-search:-ms-input-placeholder {
    /* IE 10+ */
    color: white;
}

input.navbar-search:-moz-placeholder {
    /* Firefox 18- */
    color: white;
    opacity: 1;
}

.navbar-middle input[type=text] {
    padding: 2rem;
}

.navbar-middle input[type=text]:focus {
    outline: none;
}

.navbar-right {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.navbar-link {
    color: white;
    text-decoration: none;
    margin-left: 10px;
    display: inline-flex;
    /* Use inline-flex to keep the link behavior but allow flex properties */
    align-items: center;
    /* Align the icon or any inner content vertically */
    justify-content: center;
    /* Center the icon horizontally within the link */
}

.navbar-link i {
    font-size: 3.5rem;
    color: white;
    text-decoration: none;
}

.navbar-link i:hover {
    font-size: 3.5rem;
    color: white;
    text-decoration: none;
}

.navbar-link:hover {
    text-decoration: none;
    color: white;
}

.suggestion-item {
    padding: 8px;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #1d1d1d;
}

.suggestion-item:hover {
    color: #1d1d1d;
}

input.navbar-search {
    background: #1d1d1d;
    border: white 2px solid;
}

#searchResults a {
    text-decoration: none;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.suggestion-image {
    max-width: 50px;
    max-height: 50px;
    margin-right: 10px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

#searchResults {
    position: absolute;
    top: 100%;
    /* Position it right below the input field */
    left: 0;
    /* Align it to the left side of the navbar-middle */
    width: 100%;
    /* Make it take the full width of navbar-middle */
    z-index: 1000;
    /* Place it above other elements */
    background-color: white;
    /* Optional: Add a background for clarity */
}

/* Responsive styles for mobile/tablet */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar-middle {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .navbar-left,
    .navbar-right {
        flex: 1;
        /* Allow these to flex evenly on the same row */
    }

    .navbar-search {
        padding: 10px 15px;
        border: 2px solid #1d1d1d;
        flex-grow: 1 !important;
        width: 100% !important;
    }
}

@media (min-width: 769px) {

    .navigation .level0.active>.level-top,
    .navigation .level0.has-active>.level-top {
        border-color: pink;
    }
}

.ui-menu-item-wrapper {
    border-color: #1979C3 !important;
}