
* { box-sizing: border-box; }
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
table { width: 100%; border-collapse: collapse; }
td { border: 1px solid #ccc; padding: 10px; }
.row1 td { background-color: #e0f7fa; font-weight: bold; }
.row4 td { text-align: center; }
@media screen and (max-width: 768px) {
  td { display: block; width: 100%; }
}
.top-bar {
  padding: 15px 20px;
  background: #000000;
  height: 80px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 0px;
  font-size: 1.5em;
  font-weight: bold;
  text-orientation:initial;
}
.top-bar input {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}
.image-grid {
  width: 100%;
  height: 1540px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.image-grid img {
  max-width: 100%;
  height: auto;
  padding: 2px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  cursor: pointer;
}
.image-box {
  width: 100%;
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.image-box img {
  width: 100%;
  height: 20px;
  border-radius: 8px;
}