.sidebar h1,.sidebar h2,.sidebar h3,.sidebar h4,.sidebar h5,.sidebar h6 {
    margin: 0;
    font-size: 18px;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px 0px 15px 15px;
    height: 100vh;
    overflow: auto;
    position: sticky;
    top: 0;
}
.login-box {
    background: var(--textColorWhite);
    border: 1px solid var(--borderColor);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.login-box a {
    background: var(--primary);
    color: var(--textColorWhite);
    font-weight: bold;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.login-box h2 {
    font-size: 22px;
    font-weight: bold;
}
.login-box p {
    margin: 0;
    color: var(--detailColor);
}
.box-header {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--textColorWhite);
    padding: 10px;
    border-radius: 10px 10px 0 0;
}
.box-body {
    position:relative;
    padding: 0 15px;
    border: 1px solid var(--borderColor);
    border-radius: 0 0 10px 10px;
    min-height:280px;
}
.box-body ul li {
    padding: 10px 25px 10px 0px;
    border-bottom: 1px solid var(--borderColor);
    position: relative;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box-body ul li:last-child {
    border:0;
}
.box-body ul li::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.box-body ul {
    list-style: none;
    padding: 0;
}

.side-box.top-list .box-header {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background:unset;
}
.topic-wrapper {
    padding:10px;
    background:var(--primary);
    color:var(--textColorWhite);
    border-radius:10px 10px 0px 0px;
}
.box-header .header-tab {
    background: #385e9dc4;
    border: none;
    outline: none;
    color: var(--textColorWhite);
    padding: 2px;
    font-size: 14px;
    border-radius: 0;
    transition: 0.2s;
}
.box-header .header-tab:hover {
    opacity:0.84;
}
.box-header .header-tab.active-tab {
    background: var(--yellow);
    color:var(--textColorDark);
}
.box-body .body-content {
    display: none;
}
.box-body .body-content.active-tab {
    display: revert;
}
.site-loader {
    display: flex;
    background: var(--bg-color);
    box-shadow: 0 0 20px #ccccccb5;
    border-radius: 50%;
    width: fit-content;
    margin: 0 auto;
    padding: 5px;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top:15px;
}
.other-links ul {
    padding:0;
    display: flex;
    list-style:none;
    flex-wrap: wrap;
    gap:12px;
    justify-content: start;
    font-size: 13px;
}
.side-box.other-links ul li a {
    font-size: 13px;
    color: var(--textColor);
}
.side-box.other-links ul li a:hover {
    text-decoration: underline;
}