:root {
    /* Using Saturn Leona Color Palette */
    --background-color: #0F172A; 
    --text-color: #fff;
    --base-color: #ee9438;
    --accent-color: #c74221;
    --hover-color: #ee9438;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}
html {
    color: var(--text-color);
    line-height: 1.5rem;
}
body {
    background: var(--background-color);
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: auto 1fr;
}
#sidebar {
    box-sizing: border-box;
    height: 100vh;
    width: 250px;
    padding: 5px 1em;
    border-right: 3px solid #213d55;
    color: var(--text-color);

    position: sticky;
    top: 0;
    align-self: start;
    transition: 300ms ease-in-out;
    overflow: hidden;
    text-wrap: nowrap;
}
#sidebar.close {
    padding: 5px;
    width: 80px;
}
#sidebar ul {
    list-style: none;
}
#sidebar > ul > li:first-child {
    display: flex;
    justify-content: flex-end;
    /* margin-bottom: 16px; */
    .logo {
        font-weight: 600;
        font-size: 1.3em;
    }
}
#sidebar ul li.active a{
    color: var(--accent-color);
    svg {
        fill: var(--accent-color);
    }
}
#sidebar .nav-item a, #sidebar .logo {
    border-radius: .1em;
    padding: 1.3em;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 2em;
}
#sidebar .logo {
    padding: 1em;
}
#sidebar.close .icon {
    display: flex;
    width: 50px;
    margin: auto;
    align-items: center;
}
#sidebar svg {
    text-align: center;
    display: block;
    flex-shrink: 0;
    fill: var(--text-color);
}
#sidebar a span {
    flex-grow: 1;
    font-size: 1.2em;
    font-weight: 600;
}
#sidebar a:hover {
    background-color: var(--hover-color);
}
#sidebar .profile a{
    border-radius: .1em;
    border-bottom: #213d55 solid 2px;
    color: var(--text-color);
    padding: .95em;
    margin-bottom: 2em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2em;
}
#sidebar .profile .user-name {
    display: flex;
    flex-direction: column;
    text-wrap: wrap;
}
#sidebar .profile .user-name span {
    font-weight: 600;
}
#toggle-btn {
    margin-left: auto;
    padding: 1.35em;
    border: none;
    border-radius: .1em;
    background: none;
    cursor: pointer;

    svg {
        transition: rotate 150ms ease;
    }
}
#toggle-btn:hover {
    background-color: #ee9438;
}
#toggle-btn svg {
    transition: 200ms ease;
}
/* change later */
#sidebar > ul > li:last-child { 
    position: relative;
    bottom: 0;
    color: red;
    svg {
        fill: red;
    }
}
#sidebar > ul > li:last-child span {
    color: red;
}
.rotate svg:last-child {
    rotate: 180deg;
}
/* ------ Breadcrumbs navigation ------- */
.breadcrumbs {
    padding: 14px 0;
}
.breadcrumbs ul li {
    display: inline-block;
    list-style: none;
}
.breadcrumbs a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1em;
}
.breadcrumbs li+li:before {
  padding: 3px;
  color: var(--text-color);
  content: "/\00a0";
}


.content {
    padding: 20px 2%;
}