body{
    grid-template-columns: 300px 1fr;
    display: grid;
    margin: 0%;
}

nav.categories, nav.categories div{
    display: flex;
    flex-direction: column;
}

a.category-btn{
    display: block;
    width: 100%;
    padding: 6px 0;
    background-color: lightgray;
    margin-bottom: 3px;
    color: black;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: background-color 125ms;
}

a.category-btn:hover{
    background-color: lightblue;
}

#leftpane > * {
    width: 80%;
}

#leftpane{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    overflow-y: overlay;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.35) transparent;
    padding: 16px 8px;
    box-sizing: border-box;
    background: #d14545;
    background: linear-gradient(344deg, rgba(209, 69, 69, 1) 0%, rgba(255, 168, 168, 2) 100%);
}

#leftpane::-webkit-scrollbar{
    width: 6px;
}
#leftpane::-webkit-scrollbar-track{
    background: transparent;
}
#leftpane::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,0.35);
    border-radius: 3px;
}

#leftpane .lpdv{
    background-color: whitesmoke;
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 16px;
}

#leftpane h3 {
    margin: 2px;
    text-align: center;
}

#leftpane a.phone {
    text-align: center;
    display: block;
}

#primarySearchBar{
    width: 66%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#primarySearchBar > *:not(#searchDropdown) {
    width: 100%;
    height: 0.3in;
}

#primarySearchBar > h2 {
    text-align: center;
    color: white;
}

#primarySearchBar > input,
#primarySearchBar > a.catalogBtn {
    width: 66%;
}

#primarySearchBar > input {
    border-radius: 999px;
    padding: 0px 16px;
}

#pageprimary{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("/images/qrentbuilding.png");
    background-size: cover;
    background-position: bottom right;
    height: 100vh;
}

#pageprimary > h1{
    margin-top: 2in;
    color: white;
}