#searchModal,#js-header-search-results {
    .nav-tabs {
        display: flex;
        width: 100%;
        align-content: center;
        justify-content: space-around;
        align-items: center;
        position: sticky;
        top: 0;
        background: white;
    }
    .nav-tabs li {
        margin-bottom: 5px;
    }
    .navbar-search-results {
        margin-top: 0.75rem;
    }

    li:has(a[data-toggle="tab"].active){
        background: #fd5f54;
        padding: 5px;
        border-radius: 8px;
        margin-bottom: 5px;
        color: white;
    }

    li:has(a[data-toggle="tab"].active) .result-count{
        background: white !important;
        color: #fd5f54 !important;
    }

    .result-count {
        padding-top: 0.5rem;
    }

    .tab-content {
        padding-top: 0.5rem;
        list-style-type: none;
        border: none !important;
    }

    .tab-content li {
        margin: 8px;
        padding: 8px;
        background: antiquewhite;
        border-radius: 8px;
        text-wrap: wrap;
    }
    .tab-content li:hover {
        background: #fd5f54;
        color: white;
        font-weight: 500;
    }
    .navbar-search-results{
        display: none;
    }

    .load-more-btn{
        border: none;
        background: #fd5f54;
        color: white;
        padding: 8px;
        border-radius: 12px;
        margin: 0 auto;
        display: block;
    }

    #search-results-not-found p,#search-results-not-found-inline p {
        font-size: 1rem;
    }
    #search-results-not-found svg,#search-results-not-found-inline svg {
        width: 35px !important;
        height: 37px !important;
        fill: #6c757da8 !important;
    }

    #search-results-not-found, #search-results-not-found-inline{
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        padding-top: 12px;
    }
}

#js-header-search-results{
    .result-count {
        font-size: 12px !important;
    }
}