.settings-body {
    height: 100%;
    width: 100%;
    grid-template-columns: 210px 1fr;
    display: grid;
    gap: 8px;
}

.settings-menu {
    height: 100%;
    width: 210px;
    padding: 0px;
    background: rgb(245,247,247);
    border: 1px solid rgba(16,119,159, 0.75);
    border-radius: 5px;
}

.settings-menu div {
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 17px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    padding: 8px;
    color: #368;
    border: 1px solid transparent;
}

.settings-menu div i {
    width: 23px;
    text-align: center;
}

.settings-menu div:hover,
.settings-menu .settings-menu-active {
    border-top: 1px solid rgba(180, 180, 255, 0.5);
    border-bottom: 1px solid rgba(180, 180, 255, 0.5);
    color: #eee;
    background: rgba(53,88,100, 0.6);
}

.settings-menu-active:after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
}

.settings-content {
    flex: auto;
    height: 100%;
    width: 100%;
    padding: 0px;
}

