.List-container {
    margin-left: auto;
    margin-right: auto;
}
.List {
    height: 80%;
    border-radius: 10px;
    box-shadow: 4px 4px 20px 3px rgba(0, 0, 0, 0.08);
    width: 70vw;
    margin-top: 50px;
}
.List h1 {
    font-size: 32px;
    text-align: center;
    padding-bottom: 40px;
}
.List li {
    background-color: #549DF2;
    list-style-type: none;
    display: flex;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-inline: 30px;
    color: white;
    font-size: 26px;
    padding: 10px;
    border-radius: 10px;
    transition: ease 200ms;
}
.List li:hover {
    background-color: rgb(70, 123, 214);
}
.List img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 200ms;
}
.List img:hover {
    transform: scale(1.2);
}
.List ul {
    margin: 0  auto;
    padding: 0;
    width: 100%;
}
.List-nav span {
    font-size: 26px;
    color: #B2B2B2;
}
.List-nav {
    text-align: center;
    display: flex;
    justify-content: space-between;
    border-bottom: solid #c0c0c02f;
    padding: 15px 40px 15px 40px;
    margin-bottom: 30px;
}
.List li p {
    font-size: 24px;
    margin: 0;
    width: 20vw;
    padding-right: 50px;
}
.List-info {
    margin-top: 40px;
    justify-content: space-between;
    display: flex;
}
.List-info h1 {
    color: #B2B2B2;
    margin: 0;
    font-weight: 300;
}
.List-info h1 span {
    color: #549DF2;
    font-weight: 600;
}
.List-pages {
    display: flex;
}
.List-pages h1 {
    margin-inline: 5px;
    font-weight: 500;
    font-size: 26px;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    color: #868686;
    background-color: #E6E6E6;
    transition: ease 100ms;
}
#current-page {
    cursor: pointer;
    color: white;
    background-color: #549DF2;
}
.List-pages h1:hover {
    cursor: pointer;
    color: white;
    background-color: #549DF2;
    transform: scale(1.1);
}
#acceptButton {
    transition: ease 200ms;
}
#acceptButton:hover {
    transform: scale(1.2);
}
#FullList input {
    width: 115px;
    font-size: 24px;
    border: solid 1px white;
    border-radius: 5px;
}
#FullList select {
    width: 100px;
    font-size: 24px;
    border: solid 1px white;
    border-radius: 5px;
}

@media (max-width: 800px) {
    .List {
        margin: 0 auto;
        margin-top: 25px;
        padding-bottom: 10px;
        height: 570px;
        width: 90%;
    }
    .List-nav {
        padding-inline: 10px; 
        margin-bottom: 15px;
    }
    .List-nav span {
        font-size: 18px;
    }
    #FullList li {
        margin-inline: 5px;
        padding: 10px;
        padding-inline: 10px;
        align-items: center;
    }
    #FullList li p {
        font-size: 16px;
        padding-right: 10px;
    }
    #FullList li button {
        padding: 0;
        padding-left: 5px;
        height: 20px;
    }
    #FullList button img {
        width: 20px;
        height: 20px;
    }
    #FullList input {
        font-size: 16px;
        width: 50px;
    }
    #FullList select {
        width: 70px;
        font-size: 16px;
    }
    .List-info {
        margin-inline: 25px;
    }
    .List-info h1 {
        font-size: 24px;
    }
    .List-pages h1 {
        font-size: 22px;
        width: 30px;
        height: 30px;
    }
    .List-pages {
        align-items: center;
    }
}