/* === Modal Background Overlay === */
#termsModal,
#privacyModal,
#subcontractorModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/* === Modal Content Box === */
#termsModal > div,
#privacyModal > div,
#subcontractorModal > div {
  background: white;
  padding: 25px;
  border-radius: 10px;
  max-height: 80vh;
  overflow-y: auto;
  color: #333;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

/* === Close Button Style (when inside modal) === */
#termsModal button,
#privacyModal button,
#subcontractorModal button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #B4B671;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
}

#termsModal button:hover,
#privacyModal button:hover,
#subcontractorModal button:hover {
  background-color: #4F6E4C;
}
