input {
  font-size: 1em;
}

.btn {
  font-size: 1em;
}

/* Terms Section */
.terms {
  text-align: left;
  padding: 35px 20px 25px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.terms-title {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.terms p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 5px;
}

/* Samples Section */
.samples {
  text-align: center;
}

.samples-title {
  font-size: 1.3rem;
  margin-bottom: 5px;
  line-height: 1.2;
}

.samples p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.samples-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 5px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  cursor: pointer;
}

.samples-card img {
  height: 200px;
}

/* Sample Detail Section */
.sample-detail {
  text-align: center;
  padding: 25px 15px;
}

.sample-detail-header {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.sample-detail-title {
  font-size: 1.3rem;
  margin-bottom: 5px;
  line-height: 1.2;
}

.sample-detail p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 5px;
}

.sample-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.sample-detail-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 60px 5px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  cursor: pointer;
  height: 200px;
}

.sample-detail-card * {
  margin: 5px;
}

.eol-report-list {
  list-style-type: disc; /* bullets */
  padding-left: 1.5em;
}

.eol-report-list > div {
  display: list-item;
}

.eol-report-viewer > div > table {
    width: auto !important;
}