.list-group{
    margin: 2rem 2rem;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: 1px solid grey;
}

.list-item{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 1rem 2rem;
    border-top:1px solid grey;
}

.list-item:hover{
    background-color: var(--lightGrey);
}

.list-heading{
    display: flex;
    justify-content: space-between;
}