/* refcalc.css */

body {
  max-width: 950px;
}

.table-caption {
    text-align: left;
    text-indent: 2%;
    font-size: .9em;
    font-style: italic;
    font-weight: bold;
    display: block;
    margin-bottom: 40px;
}

.table-header {
    font-size: large;
    font-weight: bold;
    text-indent: 2%;
}

.steps-sections {
    margin-top: 40px;
    margin-bottom: 50px;
    }

.steps-sections-header {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.steps-sections-body {
    text-align: left;
    margin-left: 1%;
}

.assessment-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  gap: 40px;
}

.assessment-column {
  flex: 0 1 50%;
}

.assessment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
}

.label-strong {
  font-weight: bold;
  min-width: 150px;
}

.label {
  font-weight: normal;
  min-width: 150px;
}

.rccsd-tax {
  font-size: 16px;
  min-width: 80px;
  text-align: right;
  border-bottom: 2px solid black;
  padding-bottom: 2px;
  font-weight: bold;
}

.calculations {
  margin-top: 40px;
  font-size: 16px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calc-label {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

.calc-value {
  min-width: 100px;
  text-align: right;
  font-weight: bold;
}

.tax-rate {
  font-size: 16px;
  min-width: 80px;
  text-align: right;
}

.input-field {
  background-color: #e6ebf1;
  border: 1px solid black;
  /* border: 1px solid #4a90e2; */
  padding: 5px 8px;
  font-size: 16px;
  width: 120px;
  text-align: right;
}
.total-row {
  margin-top: 20px;
  padding-top: 10px;
}

.total-value {
  border: 1px solid black;
  padding: 2px 2px;
  font-weight: bold;
}

.referendum-note {
  font-size: 14px;
  color: #666;
  text-align: right;
  margin-left: 10px;
}

/* Define layout for each table on desktop */
    @media (max-width: 600px) {
      .calculator-container {
        padding: 16px;
      }
    }

    @media (max-width: 768px) {
      .assessment-container {
        flex-direction: column;
        gap: 30px;
      }
    }