    .calculator-box {
      background-color: #FEF0C7;
      color: black;
      width: 350px;
      padding: 30px;
      border-radius: 10px;
 
    }

    h1 
    {
      font-family: 'Poppins';
    font-size: 30px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
    color: #000000;
}
    
    h5{
      font-weight: bold;
      font-size: 20px;
        text-align: center;
        color: #9E165F;
    }
 
.tab-selector {
  display: flex;
  gap: 130px;
  padding-left: 0px;
  margin-bottom: 0;
  border-bottom: 1px solid #333;
}
 
.tab-selector button {
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 10px;
  font-weight: 500;
  color: black;
  position: relative;
  white-space: nowrap; /* Prevents text wrapping */
  font-size: 16px;
}
 
.tab-selector button.active {
  color: black;
  font-weight: 600;
}
 
.tab-selector button.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}
    .passenger-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 5px;
      padding-bottom: 5px;
      margin-bottom: 10px;
    }
 
    .passenger-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid #999;
    }
 
    .passenger-controls button {
      background: none;
      border: none;
      color: black;
      font-size: 0.8rem;
      border: 1px solid black;
      margin-bottom: 5px;
    }
 
       .form-control {
      background: transparent;
      border: none;
      border-bottom: 1px solid gray;
      border-radius: 0;
      color: black;
      font-size: 14px;
    }
 
    .form-control:focus {
      background: transparent;
      color: black;
      box-shadow: none;
      border-color: black;
    }
 
    .btn-submit {
      background-color: #9E165F;
      color: white;
      width: 200px;
      padding: 5px;
      border: none;
      margin-top: 5px;
      margin-left: 50px;
      margin-right: 50px;
      font-weight: bold;
    }
 
.btn-submit:hover {
  color: white !important; /* Force white text */
}
.first-section
{
  background-color: white;
}
        /* Overlay */
    .jetpopup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 999;
    }
 
    /* Popup Box */
  .jetpopup-box {
  background: #FEF0C7;
  border-radius: 10px;
  max-width: 350px;
  max-height: 105vh;         /* Prevent popup from being taller than viewport */
  overflow-y: auto;         /* Enable vertical scroll if content overflows */
  padding: 8px;
  position: relative;
  margin: auto;
                 /* Push down from the top */
}
 
 
    /* Close Button */
    .popup-box .close-btn {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 20px;
      cursor: pointer;
    }
 
 
   
/* Optional: make scrollbar only appear on hover or always visible */
.jetpopup-box::-webkit-scrollbar {
  width: 8px;
}
 
.jetpopup-box::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
 
  .form-label {
    margin-bottom: 2px; /* default is 0.5rem (8px) */
  }
  .form-control {
    margin-top: 2px;
  }
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: black !important;
  background-color: transparent !important;
}
 
   @media (max-width: 576px) {
  .calculator-box {
    width: 100% !important;
    padding: 20px;
    border-radius: 0;
    margin: 0 auto;
  }

  .img-fluid
  {
    height:15%;
  }
  .tab-selector{
  flex-wrap: wrap;
  padding-left: 0px;
 padding-right: 0%;
 gap:20px;
 border-bottom: none;

}
  
}
  