

.dosing-form-container {
    /* background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px; */
}

.dosing-form-container .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.dosing-form-container .form-group.dosing {
    margin-top: 35px;
    border: none;
}

.dosing-form-container .icon {
    width: 35px;
    /* height: 24px; */
    margin-right: 5px;
    margin-top: 5px;
}

.dosing-form-container .help-icon {
    width: 14px;
    /* height: 16px; */
    margin-left: auto;
    cursor: pointer;
}

.dosing-form-container .label-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 10px ;
}

.dosing-form-container label {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

div.form-group input {
        width: 100%;
        padding: 5px;
        font-size: 14px;
        border: none;
        border-radius: 4px;
        background-color: #f9f9f9;

}

div.form-group input:focus {
    outline: none;
    background-color: #e5e5e5;
}

div.form-group input:focus::placeholder{
    color: #e5e5e5;
}

/* Chrome, Safari, Edge, Opera */
.dosing-form-container input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.dosing-form-container input[type=number] {
  -moz-appearance: textfield;
}

.dosing-form-container span {
    font-size: 14px;
    color: #333;
}

.dosing-form-container div.result {
    width: 100%;
    min-height: 130px;
    border: 1px solid #194162;
    border-radius: 4px;
    padding: 20px 10px;
    font-size: 14px;
}
.dosing-form-container div.result p {
    color: #194162;
    font-weight: 600;
    text-align: center;
    font-size:medium;
}

.dosing-form-container .dosing {
    position: relative;
    margin-top: 20px;
}

.dosing-form-container .dosing-label {
    position: absolute;
    top: -8px;
    left: 10px;
    background-color: #ffffff;
    padding: 0 5px;
    font-size: 14px;
    color: #194162;
    font-weight: 900;}


.dosing-form-container .error-message {
    color: red;
    font-size: 12px;
    display: none;
}




.dosing-form-container .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  /* Tooltip text */
  .dosing-form-container .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
   
    /* Position the tooltip text - see examples below! */
    top: -5px;
    right: 155%;
  
    position: absolute;
    z-index: 1;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .dosing-form-container .tooltip:hover .tooltiptext {
    visibility: visible;
  }


  .dosing-form-container .tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
  }

  
  

.box select {
  background-color: #f9f9f9;
  color: #194162;
  /*padding: 12px;*/
  /* width: 250px; */
  border: none;
   font-size: 15px; 
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2); */
  /* -webkit-appearance: button; */
  appearance: button;
  outline: none;
}



