.center-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px;
  gap: 5px;
}

.material-data-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}
.home-summary {
  padding: 20px 40px;
  background: #dfdfdf;
  width: 400px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}

.material-image-container {
  padding-top: 15px;
}
.clickable-material-image {
  cursor: pointer;
  height: 215px;
  width: 215px;
}

.clickable-material-image.checked {
  border-color: #38761d;
}

.border-green {
  border: 2px solid #85e285;
  border-radius: 50%;
  padding: 5px;
}

.clickable-bin-image:hover, .clickable-material-image:hover {
  background-color: rgb(207 228 202 / 50%); /* Changes background color on hover */
}

.limit-width {
  padding: 0px;
  font-size: 14px;
}

.home-page-image {
  height: 400px
}

.clickable-bin-image {
  cursor: pointer;
  height: 300px;
  width: 300px;
}

.clickable-bin-image.checked {
  border-color: #38761d;
}

.bin-image {
  height: 150px;
  cursor: pointer;
  padding-top: 5px;
}

.material-image {
  cursor: pointer;
  height: 100px;
}
.paragraph-container {
  padding: 0px 190px;
}
.paragraph-text {
  padding: 5px;
}
.title-left {
  text-align: left;
}

.indent {
  text-indent: 30px;
}

.home-select-bins, .home-select-materials {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

#postalCodeInput {
  justify-items: center;
}

.recommended-bins-container {
    width: fit-content;
    margin: 0 auto 50px auto;
    border: 1px solid #38761d;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    max-width: 500px;
}

.recommended-bins-header{
  display: flex;
  align-items: center;
  padding: 10px 15px;
  font-size: 14px;
  flex-direction: column;
}

.project-type-dropdown {
  margin-left: 10px;
  padding: 3px 8px;
  background-color: rgb(134 133 133 / 20%);
  border-radius: 4px;
  cursor: pointer;
}

.recommended-details{
  padding: 15px;
  background-color: #38761d;
  color: #fff;
}
.paragraph-divider,
.bin-description {
  padding: 10px;
  border-bottom: 1px solid #7b7979;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
}

input:disabled {
  border: 1px solid #ccc;
  background-color: #e9e9e9;
  color: #a0a0a0;
  cursor: not-allowed;
  opacity: 0.7;
}

#RecommendationId {
  font-size: 14px !important;
  height: 50px; /* Gives more vertical room */
  padding: 10px;
  appearance: base-select;
  align-items: center;
  width: 350px;
}
::picker(select) {
  appearance: base-select;
  background-color: white;
  padding: 10px;
  border-radius: 6px;
  margin-right: -30px;
}

#RecommendationId option {
  font-size: 14px !important; /* Finally forces a larger font */
  padding: 10px 0px;
  min-height: 1.5em;
  border-bottom: 1px solid #eee;
}

.tos-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.last-updated {
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.policy-box {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    margin: 20px 0;
}

.important {
    font-weight: 700;
    color: #111827;
}

.effective-date {
  margin-bottom: 20px;
  font-weight: bold;
}
.parties {
  margin-bottom: 30px;
}
.party-block {
  margin-bottom: 15px;
}
.signature-section {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.signature-box {
  width: 45%;
}
.sig-line {
  border-bottom: 1px solid #000;
  margin: 40px 0 10px 0;
}
.french-clause {
  font-style: italic;
}
.agreement-container {
  background-color: #fff;
  padding: 50px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

@media (max-width: 970px) { /* Adjust breakpoint as needed */
  .home-page-image {
    width: 100%;
    height: auto;
  }

  .paragraph-container {
    padding: unset;
  }
  .limit-width {
    padding: unset;
    text-align: center;
  }
  .clickable-material-image,
  .clickable-bin-image {
    height: 170px;
    width: 170px;
  }
  .material-image {
    height: 80px;
  }
  .bin-image {
    height: 60px;
  }
  .home-summary {
    width: 90%;
  }

  #RecommendationId option {
  }
}