/* styles.css */

/*body {
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
    font: 400 14px / 18px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}*/

.container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.container h1 {
    font-size: 28px;
    text-align: left;
    color: #333;
    margin-bottom: 20px;
}

.calculator {
    display: flex;
    width:"100%"
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    padding: 10px;
}

.options-container {
    width: 50%;
}

.result-container {
    width: 45%;
    text-align: left;
    padding: 25px;
    margin: 15px;
    align-items: flex-start;
    border-radius: 8px;
    background-color: rgb(10, 52, 85);
    color: rgb(255, 255, 255);
  
}

.result-container h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: rgb(255, 255, 255);
}

.result-container h2 {
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin: 0px;
}

.detailed-results-explain {
  font-size: 0.8em;
  opacity: 0.7;
}

.detailed-result {
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-top: 20px;
}
.detailed-result-title{
  font-weight: bold;
}
.detailed-result-value {
  display: inline-block;
}


hr.solid {
  border-top: 1px solid;
  margin-bottom: 25px;
  opacity: 0.3;
  margin-top: 25px;
}


.option {
    margin-bottom: 20px;
}

.option .explain {
  font-size: 13px;
  opacity:0.7;
  display: flex;
}
.option label {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.slider-min-max {
  display: flex;
  margin: "0px";
  padding: "0px";
  opacity:0.7;
  font-size: 12px;
  justify-content: space-between;
}
.slider-min,
.slider-max {
  display: inline-block;
}
.slider-container {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.slider-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: transparent;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.15s ease-in-out;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #174366;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #174366;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-container input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(110, 201, 187, 0.4);
}

.slider-value {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 14px;
    color: #333;
}
