.sidebar-container {
    background: var(--bg);
    color: var(--txt);
    display: grid;
    grid: "a" 70px "b" 1fr;
    min-height: 100vh;
}

:root[data-theme="dark"] .sidebar-container {
    background: rgba(12, 12, 13, .55);
}

.sidebar-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    padding: 12px 0;
    transition: background .4s, border-color .4s;
}

.sidebar-nav {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.sidebar-nav-item {
    padding: 0 12px;
}

.sidebar-nav-link {
    color: var(--txt);
    text-decoration: none;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color .2s;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: var(--acid);
}

.sidebar-header {
    font-size: 18px;
    margin: 0 20px;
    color: var(--txt);
    font-family: 'Space Mono', monospace;
}

.sidebar-content {
    width: 80%;
    margin: 0 10%;
    padding: 2rem 0;
}

.link {
    color: var(--acid);
    text-decoration: underline;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
}

.link:hover {
    opacity: .8;
}

.dashboard-quote-screen {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.qoute {
    font-size: 40px;
    margin: 0;
    color: var(--txt);
}

.credit {
    font-style: italic;
    text-align: right;
    width: 300px;
    color: var(--muted);
}
