/* Container */
.dpc-calculator {
  max-width: 500px; /* keeps it from stretching too wide */
  padding: 1.5em;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #fafafa;
}

/* Rows */
.dpc-calculator .dpc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}

/* Labels */
.dpc-calculator label {
  flex: 0 0 40%;
  font-weight: 600;
  color: #333;
}

/* Inputs */
.dpc-calculator .dpc-input {
  flex: 0 0 55%;
  padding: 0.4em 0.6em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  transition: border-color 0.2s ease;
}

.dpc-calculator .dpc-input:focus {
  border-color: #2ea3f2; /* Divi’s blue accent */
  outline: none;
}

/* Result area */
.dpc-result {
  margin-top: 1.5em;
  padding-top: 0.8em;
  border-top: 2px solid #e2e2e2;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
}

.dpc-result-label {
  color: #444;
}

.dpc-result-value {
  color: #2ea3f2; /* highlight the total */
}