#docStoreHeader {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    
}
#dsh_headerbar {
    display: grid;
    grid-template-columns: 60px 1fr 40px 40px;
    gap: 10px;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid #eee;
}

#dsh_logobox {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}
#dsh_logo {
    width: 36px;
}
#dsh_showsearch {
    display: none;
    border: transparent;
}
#dsh_showsearch i {
    font-size: 22px;
    margin: 0;
    padding: 0;
    color: var(--theme-color-ext);
}
#dsh_searchContainer {
    width: 250px;
}
#dsh_searchbox {
    display: grid;
    grid-template-columns: 1fr 35px;
    align-items: stretch;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
}
#dsh_searchinput {
    padding: 10px;
    border: transparent;
}
#dsh_searchbtn {
    border: transparent;
}
@media (max-width: 601px) {
    #dsh_showsearch {
        display: inline-block;
    }
    #dsh_searchContainer {
        display: none;
        position: fixed;
        left: 0;
        top: 60px;
        z-index: 9999;
        width: 100%;
        background-color: white;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }
}
#dsh_filterbtn {
    border: transparent !important;
    background-color: var(--theme-color-ext);
    border-radius: 5px;
    padding: 8px !important;
}
#dsh_filterbtn i {
    color: white;
    margin: 0;
    padding: 0;
}

#docstore_filterContainer {
    position: fixed;
    top: 60px;
    right: 0;
    width: 300px;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 100;
    display: none;
}
#docstore_filterbox {
    display: grid;
    grid-template-columns: 80px 1fr;
    font-family: Narrow;
}
.docstore_filterMenuItem[data-tab-active='true'] {
    color: var(--theme-color-ext) !important;
}
@media (max-width: 601px) {
    #docstore_filterContainer {
        left: 0;
        width: 100%;
    }
}

.dsh_authbtn {
    padding: 7px;
    color: #000 !important;
}
#dsh_authbtn_login i {
    margin: 0;
    padding: 0;
}
#dsh_authbtn_login {
    background-color: var(--theme-color-light);
    border: 1px solid var(--theme-color-medium);
}
#dsh_authbtn_user {
    background-color: var(--theme-color-ext-light);
    border: 1px solid var(--theme-color-ext-medium);
}

#dsh_categorybar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 40px;
    border-bottom: 1px solid #eee;
    background-color: var(--theme-color-ext-light);
}
.dsh_category {
    font-family: Narrow;
    font-weight: bold;
}
@media (max-width: 601px) {
    .dsh_category {
        font-size: 0.8rem;
    }
}