.left-menu-scroll {
    height: calc(100vh - 80px);
    overflow-y: scroll;
}

.left-menu-scroll::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: rgb(23, 25, 35);
}

.left-menu-scroll::-webkit-scrollbar
{
    width: 12px;
    background-color: rgb(23, 25, 35);
}

.left-menu-scroll::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: rgb(37, 42, 55);
}

hr {
    display: block;
    height: 0;
    border: 0;
    border-bottom: 1px solid rgb(34,38,55);
    margin: 16px 0;
}

pre {
    background: rgb(37 42 55);
    border-radius: 8px;
    padding: 6px;
    font-size: 13px;
}

a{
    color:#00a8e3;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.alert {
    border-radius:8px;
    padding:16px;
}

.alert.alert-success {
    border-left: 3px solid #00bc8c;
    background: rgba(0,188,140,0.1);
}

.alert.alert-info {
    border-left: 3px solid #3498db;
    background: rgba(52,152,219,0.1);
}

.alert.alert-warning {
    border-left: 3px solid #f39c12;
    background: rgba(243,156,18,0.1)
}

ul {
    list-style-type: decimal;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 40px;
    color: white;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 34px 0 18px 0;
    color: white;
}

p {
    line-height: 24px;
    font-size:16px;
    margin-top: 16px;
}

p.muted {
    color: rgb(131, 131, 139);
}

.box {
    display: inline-block;
    background: rgb(37 42 55);
    padding:2px 8px;
    margin:1px 0;
    border-radius:4px;
    font-family: Nunito;
    font-weight: 700;
    color: rgb(220,220,220);
    letter-spacing: 1.2px;
    font-size: 15px;
}

.box.highlighted {
    display: inline-block;
    background: rgb(37 42 55);
    padding:3px 8px;
    border-radius:4px;
    font-family: Nunito;
    font-weight: 700;
    color: #cc7832;
}

.menu-title {
    display: inline-block;
    line-height:30px;
    font-size:15px;
    font-weight: 800;
    color: rgb(225,225,225);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding:0 10px;
    margin-top: 10px;
    border-bottom: 1px solid rgb(33, 38, 48);
}

.menu-item {
    display: block;
    color: inherit;
    text-decoration: none;
    font-size:15px;
    line-height:34px;
    transition: all 0.03s;
    padding:0 10px;
    margin-bottom: 5px;
}

.menu-item svg {
    color: white;
    flex-shrink: 0;
    width:16px;
    height:16px;
    transition: all .3s;
}

.menu-item svg.active {
    transform:rotate(90deg);
}

.menu-item:hover {
    background: rgb(28,30,45);
    border-radius: 4px;
    cursor:pointer;
    text-decoration: none;
}

.menu-item.active {
    font-weight: 700;
    color: #3498db;
    background: rgb(28,30,45);
    border-radius: 4px;
    margin-bottom: 5px;
}

.menu-item > a {
    color: inherit;
    text-decoration: none;
}

.menu-sub-items {
    border-left: 1px solid rgb(34,38,55);
    padding-left:16px;
    margin-left: 10px;
    display: none;
}

.menu-has-dropdown {
    display: flex;
    align-items: center;
    width:100%;
}

.menu-has-dropdown > a {
    flex-grow: 1;
    margin-right: 8px;
    color: inherit;
    text-decoration: none;
}

table.styled {
    margin:0;
    padding:0;
}

table.styled td, table.styled th {
    border: 1px solid rgb(35, 37, 47);
    padding: 8px 16px;
}

table.styled tr:nth-child(even) {
    background-color: rgb(27, 29, 39);
}

table.styled tr:nth-child(odd) {
    background-color: rgb(29, 31, 41);
}


table.styled tr:first-child td:first-child {
    border-top-left-radius: 6px;
}

table.styled tr:first-child td:last-child {
    border-top-right-radius: 6px;
}


table.styled tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

table.styled tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}
