  /* Styles for flip switch button */
  .flipswitch {
    position: relative;
    top: -57px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 100px;
    height: 34px;
  }

  .flipswitch input[type="checkbox"] {
    display: none;
  }

  .flipswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 34px;
  }

  .flipswitch-inner {
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
  }

  .flipswitch-inner:before,
  .flipswitch-inner:after {
    float: left;
    width: 50%;
    height: 33px;
    padding: 0;
    line-height: 33px;
    font-size: 14px;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
  }

  .flipswitch-inner:before {
    content: "User";
    padding-left: 10px;
    background-color: black;
    color: #fff;
  }

  .flipswitch-inner:after {
    content: "Admin";
    padding-right: 10px;
    background-color: black;
    color: #fff;
    text-align: right;
  }

  .flipswitch-switch {
    width: 46px;
    margin: 2px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 34px;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-in 0s;
  }

  .flipswitch-checkbox:checked + .flipswitch-label .flipswitch-inner {
    margin-left: 0;
  }

  .flipswitch-checkbox:checked + .flipswitch-label .flipswitch-switch {
    right: 1px;
  }

  /* Styles for calculator form */
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: black;
    font-family: Arial, sans-serif;
  }
  .logo {
    height: 8%;
    position: absolute;
    width: 13%;
    top: 7px;
}
  .calculator {
  max-width: 450px;
  width: auto;
  background: linear-gradient(135deg, #CDFFD8, #539D96);
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

  .calculator h2 {
    text-align: center;
    margin-bottom: -8px;
    color: red;
  }

  .calculator input[type="number"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    height: 30px; /* Responsive height */
    font-size: 16px; /* Responsive font size */
  }
  .calculator select[type="number"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    height: 30px; /* Responsive height */
    font-size: 16px; /* Responsive font size */
  }
  
  .calculator button.access,
  .calculator button.bf {
    display: none;
  }

  


 


  .kvaall{
    display: block;
    
  }
 
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .button-82-front {
     
      
      padding: 8px 10px!important;
      border-radius: 12px;
      font-size: 1.1rem;
      color: white;
      background: hsl(345deg 100% 47%);
      will-change: transform;
      transform: translateY(-4px);
      transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
  }
    .flex-rows {
      flex-direction: column;
    }
    .logo {
      height: 5%;
      position: relative;
      width: 20%;
      top: 0px;
      padding:1%;
  }
    .flex-cols {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .flex-cols label {
      width: auto; /* Adjust width as needed */
      margin-right: 10px; /* Add some space between label and select */
    }
  
    .flex-cols select {
      width: 57% !important ;
    }
    .flex-cols input {
      width: 53% !important ;
    }
    .flex-row {
      flex-direction: column;
    }
  
    .flex-col {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .flex-col label {
      width: auto; /* Adjust width as needed */
      margin-right: 10px; /* Add some space between label and select */
    }
  
    .flex-col select {
      width: 57% !important ;/* Adjust width as needed */
    }
    .calculator {
      width: 100%;
      height: 94vh;
      overflow-y: scroll;
      display: inline-block;
      width: auto;
    }
    .kvaall{
      display: flex;
      flex-direction: column;
    }
    .calculator input[type="number"],
    .calculator button {
      font-size: 14px; /* Reduce font size for smaller screens */
         margin-left: 0px;
    }
    .form-row input {
      flex: 2;
      height: 30px;
  }
  .flex-cols {
    flex: 1;
    margin: 0px;
  } 

  
  
  }

  /* Styles for password prompt */
  .password-prompt {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }

  .password-prompt-inner {
    max-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
  }

  .password-prompt-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .password-prompt-input {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
  }

  .password-prompt-button {
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
  }

  .password-prompt-button:hover {
    background-color: #2980b9;
  }

  .password-prompt-cancel {
    margin-top: 10px;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
  }
  .form-row {
align-items: center;
margin-bottom: 10px;
}

.form-row label {
width: 150px;
text-align: left;
margin-right: 10px;
}
.center-row {
display: flex;
align-items: center;
justify-content: center;
}
.green-input {
background-color: #92D050;
}
.form-row input {
flex: 2;
width:100%;
}
.label-inline {
display: inline-block;
width: 120px;
text-align: right;
margin-right: 10px;
}

.input-group {
display: inline-block;
margin-bottom: 10px;
}
.info-tooltip {
position: relative;
}

.tooltip-text {
visibility: hidden;
width: 100px;
background-color: #000;
color: #fff;
text-align: center;
border-radius: 4px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
}

.info-tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
