.sidebar-container {
    border-radius: 0.75rem;
    padding: 0.75rem;
    background-color: #414042;
    margin-bottom: 0.75rem;
}

.sidebar-container:last-child {
    margin-bottom: 0rem;
}

.sidebar-container:first-child {
    margin-top: -0.75rem;
}

.user-card-container {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.user-card-logout-button {
    display: block;
    height: 32px;
    width: 32px;
    margin-left: auto;
}

.user-card-info {
    overflow: hidden;
}

.user-card-info p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.incoming-event-card-container {
    overflow: hidden;
}

.no-events-card-container {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.event-color-line {
    width: calc(100% + 1.5rem);
    height: 0.75rem;
    margin-top: -0.75rem;
    margin-left: -0.75rem;
}

.event-time-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.event-time-to-event {
    background-color: #757477;
    color: #ffffff;
    padding: 0.25rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    margin-left: auto;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incoming-event-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4rem;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    width: calc(100% - 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.75rem;
}

.is-light-on-hover {
    padding: 0.25rem;
}

.is-light-on-hover:hover {
    padding: 0;
}