body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f5f5f5;
    color: #333;
  }
  
  h1, h2 {
    color: #1a4a84;
  }
  
  .photo {
    margin-bottom: 20px;
  }
  
  .photo img {
     width: 300px;
     height: 200px;
     object-fit: cover;
     border: 1px solid #ccc;
     display: block;
     margin-bottom: 5px;
  }

.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.zoom-modal img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  border: 4px solid #fff;
}

.zoom {
  width: 600px !important;
  height: 400px !important;
  z-index: 10;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: width 0.3s, height 0.3s;
}
  
  table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    background-color: white;
  }
  
  th, td {
    border: 1px solid #aaa;
    padding: 8px;
    text-align: left;
  }
  
  th {
    background-color: #ddd;
  }
  