/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
  background-color: #f9f9f9;
}

/* Wrapper */
.wrapper__calc {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Heading */
.heading__primary--calc {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #19b19f;
  text-align: center;
}

/* Container */
.container__calc {
  background-color: #f2efe6;
  padding: 20px;
  border-radius: 8px;
}

/* Form Rows */
.row__calc {
  margin-bottom: 20px;
}

.label_input_container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.label__calc {
  font-size: 1rem;
  color: #333;
  margin-right: 10px;
  flex: 1 1 auto;
}

.input__calc {
  width: 150px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.input__calc:focus {
  outline: none;
  border-color: #19b19f;
}

.slider_container {
  margin-top: 10px;
}

.row__calc--flex {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  width: 100%;
}

.min__val,
.max__val {
  display: block;
}

/* Output Container */
.output__container--calc {
  margin-top: 30px;
  background-color: #f2efe6;
  padding: 20px;
  border-radius: 8px;
}

.row__output--row {
  display: flex;
  flex-direction: column;
}

.output__label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #19b19f;
}

#output {
  font-size: 1rem;
  color: #333;
}

/* Slider Styles */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 3px solid #19b19f;
}

.slider::-webkit-slider-thumb:active {
  box-shadow: 0 0 0 10px rgba(25, 177, 159, 0.25);
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 3px solid #19b19f;
}
.output__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.output__label {
  font-weight: bold;
  color: #333;
  flex: 1;
}
.output__label_1 {
}
.logo__calc {
  margin: 10px auto;
  width: 200px;
}
.logo__calc img {
  display: block;
  width: 100%;
}

.output__result {
  color: #19b19f;
  text-align: right;
  flex: 1;
}

.output__row:last-child {
  border-bottom: none; /* Remove border for the last row */
}

/* Responsive Design */
@media (max-width: 768px) {
  .label_input_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .input__calc {
    width: 100%;
    margin-top: 5px;
  }
}
