.calculator {
  max-width: 80%;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 1px;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.calculator-input label {
  
  margin-bottom: 5px;
  height: 10px;
  font-size:12px;
  font-weight:bold;
}

.calculator-input input {
  width: 100%;
  padding: 10px;
  border-radius: 0px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-bottom: 10px;
  text-align:justify;
  height: 10px;
  background-color:#ffffff;
}
.calculator-input select {
  width: 100%;
  padding: 0px;
  border-radius: 0px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-bottom: 10px;
  height: 25px;
  font-weight:bold;
  color:#686868;
}

.calculator-input {
  width: 100%;
  padding: 0px;
  border-radius: 5px;
  border: 0px solid #ccc;
  box-sizing: border-box;
  margin-bottom: 3px;
  text-align:justify;
  height: auto;
}


.calculator-button button {
  width: 100%;
  padding: 0px;
  background-color: #ff8000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: 20px;
}

.calculator-button button:hover {
  background-color: #c0c0c0;
}

.calculator-output {
  text-align: center;
  font-weight: normal;
  text-align:justify;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}



.result {
  width: 100%;
}

.result-item {
  display: flex;
  justify-content: space-between;
  border: 1px solid orange;
  padding: 3px;
  margin-bottom: 3px;
  border-radius: 5px;
  font-size:15px;
}

.result-item:last-child {
  margin-bottom: 0;
}

.result-label {
  flex: 1;
  font-weight: normal;
  text-align:justify;
  font-size:11px;
}

.result-value {
  text-align: right;
  min-width: 50px;
  font-size:11px;
  font-weight: bold;
}

.result-item div {
  flex: 1;
}

.result-item .result-label {
  text-align: left;
  font-weight: normal;
  text-align:justify;
  font-size:11px;
}


