#modal-content{
    width: 550px;
}

.lists-holder{
    width: 95%;
    margin: 0 auto;
}

.lists-holder-title{
    font-size: 120%;
    font-weight: 600;
    margin: 4% 0;
    text-align: center;
}

.list-scroll-holder{
    max-height: 65vh;
    overflow-y: scroll;
}

.list-scroll-holder::-webkit-scrollbar {
    width: 3px !important;
    -webkit-appearance: scrollbartrack-vertical;
}

.list-scroll-holder::-webkit-scrollbar-track {
    border-radius: 50px !important;
    background: white !important;
}

.list-scroll-holder::-webkit-scrollbar-thumb {
    border-radius: 50px !important;
    background: rgba(209, 212, 217, 0.6) !important;
}

.list-scroll-holder::-webkit-scrollbar-thumb:hover {
    background: rgba(209, 212, 217, 0.8) !important;
}

.list-holder{
    display: flex;
    align-items: center;
    margin-bottom: 2%;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
}

.list-holder:hover{
    background-color: rgba(191,203,218,.18);
}

.list-img-holder{
    width: 70px;
    height: 70px;
    margin-right: 12px;
}

.list-img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.list-title{
    font-weight: 600;
}

.list-subtitle{
    color: gray;
    font-size: 80%;
}

.create-list-form{
    display: none;
}

.create-list-name{
    width: calc(100% - 4px);
}

.create-list-btn{
    background-color: var(--black);
    color: white;
    padding: 14px 0;
    margin: 4% auto;
    width: 100%;
}

@media only screen and (max-width: 800px) {
    #modal-content {
        width: initial;
    }

    .list-holder{
        padding: 12px 0;
    }
}