.logout-icon {
    width: 32px;
    position: relative;
    height: 32px;
    overflow: hidden;
    flex-shrink: 0;
}

.logout {
    position: relative;
    font-weight: 600;
}

.sidebar-logo-and-app-name {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    padding: 16px 24px 0px;
}

.link {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 32px;
    gap: 32px;
    cursor: pointer;
}

.links {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px 0px 0px;
}

.sidebar {
    width: 350px;
    position: absolute;
    margin: 0 !important;
    top: 0px;
    left: -350px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background-color: var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    font-size: 20px;
    color: #fff;
    font-family: Poppins;
    transition: left 0.3s ease;
    z-index: 4;
}

.sidebar.showing {
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
    display: none;
}

.overlay.showing {
    display: block;
}