table {
    border-collapse: collapse;
    width: 100%;
}
  
td, th {
    border: 1px solid #ddd;
    padding: 8px;
}

/* Set fixed width for the first column (photos) */
td:first-child, th:first-child {
    width: 100px;
    text-align: center;
}
  
tr:nth-child(even) {
    background-color: #f2f2f2;
}
  
tr:hover {
    background-color: #ddd;
}
  
th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #ddd;
    color: black;
}

img {
    width: 100px;
    height: auto;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 4px;
}