ul {
    margin-left: 15px;
    list-style-type: none;
    padding-left: 0;
}

ol {
    list-style-type: none;
    padding-left: 25px;
}

li {
    border-bottom: solid 1px rgb(230, 230, 230);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 5px;
}

li:hover {
    color: blue;
    cursor: pointer;
}

/* remove body margin to keep scroll bars full width */
.body {
    margin-bottom: 0;
}

.support-flex .logo {
    width: 85%;
    height: auto;
    opacity: 50%;
}

.main {
    text-align: center;
    font-size: 2rem;
}

.welcome {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    border-top: solid 1px lightgray;
    border-bottom: solid 1px lightgray;
}

.support-flex {
    position: relative;
    z-index: 1;
    margin: auto;
    display: flex;
    width: 80%;
    /* navbar + footer */
    height: calc(100vh - (60px + 25px));
}

.support-left {
    padding-top: 20px;
    width: 25%;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    font-size: .85rem;
}

/* this works, just not sure if this is better for ux */
/* .support-left::-webkit-scrollbar{
    width: 0
} */

.support-right {
    width: 75%;
    height: 100%;
    padding: 2% 8% 4% 8%;
    overflow-y: scroll;
    background-color: rgb(247 247 247);
    text-align: justify;
}

.expand {
    list-style-image: url("/static/img/caret-right.svg");
}

.close {
    list-style-image: url("/static/img/caret-down.svg");
}

.expandable {
    max-height: 0px;
    transition: max-height .5s ease-in-out 0s;
    overflow: hidden;
}

.selected, .selected:hover {
    /* :hover otherwise would show blue => li:hover */
    background-color: rgb(230, 230, 230);
    color: inherit;
}

.page-nav {
    visibility: hidden;
    margin: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.page-nav span {
    color: blue;
    font-size: .8rem;
}

/* don't show cursor on hover over "|" */
.page-nav span:nth-child(odd):hover {
    cursor: pointer;
}

.page-nav img {
    vertical-align: sub;
    width: 1.1rem;
    /* turn black for filter starting point */
    filter: brightness(0) saturate(100);
    filter: invert(7%) sepia(100%) saturate(7272%) hue-rotate(248deg) brightness(113%) contrast(143%);;
}

.right {
    float: right;
}


.desig-table {
    border-collapse: collapse;
    width: 100%;
    font-size: .9rem;
}

.dataTables_filter {
    margin-top: 10px;
    margin-bottom: 20px;
}

.desig-table input {
    border-radius: 5px;
}

.desig-table th {
    border: 2px solid gray;
    padding: 10px;
    background-color: #d9d9d9;
}

.desig-table td {
    border: 1px solid #eeeeee;
    text-align: left;
    padding: 8px;
}

.desig-table tr:nth-child(even) {
    background-color: #eeeeee;
}

.search {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.search-box {
    position: relative;
}

.search .input {
    text-indent: 20px;
    height:25px;
    border-radius:25px;
    border: 1px solid lightgray;
}

.search-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 10px;
    padding: 0;
    height: 15px;
}

.search-btn:hover {
    cursor: pointer;
}

.search-result {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid lightgray;
}

.search a, .search-result a {
    text-decoration: none;
    color: inherit;
}

.search a:hover, .search-result a:hover {
    text-decoration: underline;
    color: blue;
}
