.sidebar {
    width: 15%;
    padding: 20px 0 0 0;
    height: 100%;
    position: absolute;
    top: 3.5rem;
    left: 0px;
    display: block;
    color: black;
}

.sidebar img {
    border-radius: 50px;
}

.sidebar h6 {
    color: black;
    margin-top: 10px;
}


.items-container {
    height: 100%;
    width: 15%;
    color: black;

}

.menu-item {
    width: 200px;
    padding: 10px 0 10px 20px;
    transition: background-color .5s;
    cursor: pointer;

}

.menu-item:hover {
    background-color: lightgray;
}

.menu-item:active {
    background-color: lightgray;
}

.items-container a {
    text-decoration: none;

}

/* Modal Styles */
.modal-style {
    width: 60%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 50px darkgrey;
    display: none;
}

.modal-style .close-modal {
    font-weight: 700;
    cursor: pointer;
}

.modal-style .close-modal:hover {
    color: red;

}
