.reading-row {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.readings-container {
  flex: 1;
  background: white;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 570px;
  justify-content: space-between;
}
.readings-container h3 {
  padding-bottom: 10px;
  position: relative;
  width: 100%;
  border-bottom: 2px solid var(--color-innovation-yellow);
}
.readings-table {
  margin-top: 20px;
  width: 100%;
}
.reading-row-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.reading-label {
  font-weight: 600;
  color: var(--color-black);
  font-size: 1.125rem;
  white-space: nowrap;
  text-align: left;
}
.reading-value {
  font-size: 1.125rem;
  text-align: left;
}
.reading-label::after {
  content: "  ";
  white-space: pre;
}
.subheader-readings-taken {
  font-family: "Roboto Flex", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.66;
  color: var(--color-link-blue);
  text-decoration: none;
  margin-left: 0.625em;
}
.reading-as-of {
  margin-left: 0.625em;
}
/* 9.2 Data Plots */
.data-plots {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.plot-container {
  flex: 1 1 calc(50% - 25px);
  min-width: 0;
  min-height: 245px;
  background: none;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}
.plot-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  flex: 1;
}

@media (max-width: 768px) {
  .btn-toolbar {
    margin: 18px 0 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-group {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  main {
    max-width: 100%;
    padding: 0 20px;
  }
  .double-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }
  .double-header .reading-as-of,
  .double-header .subheader-readings-taken {
    margin-top: 0.5rem;
    margin-left: none !important;
    padding-left: none !important;
  }
  .reading-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .readings-container {
    max-width: 100%;
    width: 100%;
  }
  .data-plots {
    gap: 32px;
  }
  .plot-container {
    flex: 1 1 100%;
  }
  .weather-reporting-tool {
    flex-direction: column;
  }
  .parameters,
  .weather-report {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .parameters-container {
    max-width: 100%;
    border-right: none;
    padding-right: 0;
  }
  .current-conditions-row {
    flex-direction: column;
    gap: 30px;
  }
  #aboutTabDropdown {
    margin-top: 8px;
    border: 2px solid var(--color-link-blue);
    background-color: var(--color-link-blue);
    color: white;
    font-weight: 500;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='16' viewBox='0 0 20 20' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548a.75.75 0 0 1 1.06 0L10 10.97l3.424-3.423a.75.75 0 1 1 1.06 1.06l-3.954 3.954a.75.75 0 0 1-1.06 0L5.516 8.608a.75.75 0 0 1 0-1.06z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 36px;
  }
  .about-form-label {
    margin-top: 20px;
    font-weight: 500;
  }
  #myTabContent .tab-pane .h1 {
    margin-top: 30px !important;
  }
}