/* Container overflow for mobile */
.solar-setup-calculator-wrapper .ssc-table-wrap {
  overflow-x: auto;
  margin-bottom: 1em;
}

/* Table styling */
#solarTable {
  border-collapse: collapse;
  width: 100%;
}

#solarTable th,
#solarTable td {
  border: 1px solid #eee;
  padding: 5px 10px;
  text-align: center;
}
#solarTable th {
 vertical-align: bottom;
}

/* Inputs full width */
#solarTable input {
  width: 100%;
  box-sizing: border-box;
}

/* Button styling */
#ssc-add-appliance {
  margin-bottom: 1em;
  padding: 0.5em 1em;
  cursor: pointer;
}

/* Headings spacing */
.solar-setup-calculator-wrapper h3 {
  margin-top: 1.5em;
}

.ssc-input,
.ssc-select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.4em;
  border: 1px solid #C8E6C9;
  background: #fff;
}

/* 1) Allow any .ssc-shortcode inside an Elementor flex cell to shrink */
.elementor-widget-shortcode .ssc-shortcode {
  min-width: 0 !important;
}

/* 2) Force the battery wrapper to fill the column */
.elementor-widget-shortcode .ssc-battery-volt-shortcode {
  width: 100% !important;
  min-width: 0 !important;
  display: block !important;
}

/* 3) Ensure the label is block and full width */
.ssc-battery-volt-shortcode .ssc-label {
  display: block !important;
  width: 100% !important;
}

/* 4) Finally, force the select to span 100% of the available space */
#batteryVoltage,
.ssc-battery-volt-shortcode .ssc-select {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
}