/*
// CSS Classes  below can be populated and changed to modify your calculator deployment.
// IMPORTANT: Do Not Modify the KJE.css file!  The KJE.css file is replaced during the update process
// All CSS customization must be done in this file (you can override KJE.css classes)
//
// For information on customizing this file please see:
// https://www.dinkytown.net/money/V3customize.html
*/

#KJEAllContent {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  background-color: #FFFFFF;
  color: #1A1A1A;
}


#KJECalculatorTable {
  background-color: #FFFFFF;
  border: 1px solid #DDE5E2;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


#KJETitle {
  color: #007A53;
  font-weight: 600;
  margin-bottom: 20px;
}

.KJECommandButton,
.KJEMoreButton {
  background-color: #007A53;
  color: #FFFFFF;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin: 5px;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #6F6F6F;
  border-radius: 4px;
  font-size: 14px;
  background-color: #F0F7F5;
  color: #1A1A1A;
  margin-bottom: 10px;
}


#KJEResults {
  background-color: #F0F7F5;
  border-top: 2px solid #007A53;
  padding: 15px;
  margin-top: 20px;
  color: #1A1A1A;
}

#KJEDefinitions {
  margin-top: 16px;
}

.KJECommandButton,
.KJEMoreButton,
#KJEAllContent input.KJEMenuButton[type=button] {
  color: #FFFFFF;
  background-color: #333333;
  border-color: #444444;
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
}

@media screen and (max-width: 640px) {

  .KJECommandButton,
  .KJEMoreButton {
    width: 130px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 1.0rem;
  }

}


#KJEFixed {
  width: 98%;
  z-index: 999;
  position: absolute;
  width: 100%;
}


@media screen and (min-width: 768px) {

  .KJECommandButton,
  .KJEMoreButton {
    font-weight: bold;
    width: 180px;
    font-size: 1.2rem;
  }
}