.centered-container {
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 170px;
    width: 100%; /* Ensure the div takes the full width */
    color: red;

}

.parallax-section {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

div{
    font: 20px;
}

.overlay-box {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    top: 30%; /* Adjust this value as needed */
    left: 50%;
    transform: translate(-50%, -50%);
}

.thumb-wrapper {
    height: 140px;    /* enforce height */
    max-height: 140px;
    overflow: hidden;
}

.thumb-wrapper img {

    height: 100%;          /* 🔑 this is the missing rule */
    object-fit: cover;
    display: block;
}

.result-box {
  border: 1px solid #ccc;
  border-radius: 6px;
  background: white;
  min-height: 220px;
  max-height: 350px;
  overflow: auto;
  margin-top: 7px;
  margin-bottom: 12px
}

/* Table */
.result-table {
  width: 100%;
  border-collapse: collapse;
}

.result-table th,
.result-table td {
  padding: 6px 10px;
  border: 1px solid #ccc;
  white-space: nowrap;
}

/* Sticky header */
.result-table thead th {
  position: sticky;
  top: 0;
  background: #e9ecef;
  z-index: 2;

  /* Remove the standard top border and replace with a shadow */
  border-top: none;
  box-shadow: inset 0 1px 0 #ccc,  /* Top border */
              inset 0 -1px 0 #ccc; /* Bottom border */
}

/* Empty result row */
.result-table td.empty {
  text-align: center;
  color: #777;
}
