/* CSS for services modal */

/* Hide all modals by default */
#solarModal,
#saltBatteryModal,
#lithiumBatteryModal,
#energyEfficiencyModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

/* Modal content styles */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

.modal-content h3 {
    background: #23a658;
    color: #ffffff;
    padding: 10px;
    margin-bottom: 20px;
}

.indented-services-list {
    list-style: none;
    text-indent: -20px;
    margin-left: 20px;
    /* text-align: justify; */
}
.indented-services-list2 {
    text-indent: -20px;
    margin-left: 20px;
    line-height: normal;
}


/* Close button styles */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/* Text styles */


