.pagelist-item{
    display: flex;
    flex-direction: column;
    width: 40%;
    height:100%;
    padding: 2rem;
    /*box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);*/
    border-radius: 10px;
    border: 1px solid lightgray;
    background: #FFFFFF;
    min-width: 300px;
    max-width: 100%;
    max-height: 100vh;
    margin: 2.5rem 10rem 5rem 0;
}
.reviews{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: scroll;
    
}
.star-submit{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
        
}
.response{
    display: flex;
    flex-direction: column;
    width: 90%;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem;
    border: 1px solid lightgray;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.title-feedback{
    display: flex;
    flex-direction: row;
}
.buttons-page1{
    padding-top: 1rem;
}
.buttons-Page{
    padding: 0.5rem;
    border: 1px solid lightgray;
    border-radius: 5px;
}

@media screen and (max-width:1000px){
    .pagelist-item {
        width: 100%;
    }


}