.sidebar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #4680ff;
}

.sidebar-logo {
    padding: 0 20px;
    width: calc(100% - 40px);
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgb(15 34 58 / 12%);
}

.sidebar-logo img {
    max-width: 60%;
    border-radius: 5px;
}

.sidebar-collapser {
    color: #fff;
    cursor: pointer;
    font-size: 25px;
}

.sidebar-menu-container {
    color: #ffffffb2;
    padding: 40px 20px;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.sidebar-title {
    color: inherit;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
}

.sidebar-menu {
    margin: 10px 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-menu-item {
    width: 100%;
    display: flex;
}

.sidebar-menu-item a {
    text-decoration: none;
    padding: 15px 10px;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
    color: inherit;
}

.sidebar-menu-item-label {
    margin-left: 15px;
    text-transform: capitalize;
    font-size: 15px;
}

a.sidebar-item-selected {
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}
