@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

.navbar-container {
    width: 10em;
    height: 100%;
    position: fixed;
    box-shadow: inset;
    background-color: #1F254A;
    display: flex;
    flex-flow: column nowrap;
    z-index: 1;
    color: white;
}

.link {
    text-decoration: none;
    color: #ffffffb3;
    font-family: inherit;
    margin: 1em;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.5em;
    font-size: 14px;
}
.navbar-container a { 
    text-decoration: none;
    width: 100%;
}

a:visited { 
    text-decoration: none; 
}

.logout-button {
    flex-grow: 99;
    max-width: 100%;
    order: 99;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 2em;
}
.logout-button form {
    display: flex;
    gap: 1em;
    flex-direction: column;
}
.logout-button p {
    color: #fff;
    font-size: small;
}
.icon-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.navbar-container a:hover {
    background-color: rgba(0,0,0,.2);
}

