body{
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}
.container{
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1,h2{
    text-align: center;
    
}
.table-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}
.table{
    width: 150px;
    height: 150px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.table img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;

}
.table-name{
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(255,255,255,0.8);
    padding: 5px 0;
    border-radius: 5px;
    font-weight: bold;

}
.button{
    position: absolute;
    bottom: 5px;
    left: 5px;
    background-color: #28a745;
    color:white;
    border: none;
    padding: 5px;
    cursor: pointer;
}
.button:hover{
 background-color: #218838;   
}