body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
  }

  .step-container {
    max-width: 500px;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .step-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #9945c5;
    margin-bottom: 10px;
  }

  .progress-bar {
    background-color: #9945c5;
  }

  .form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .form-control:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(153, 69, 197, 0.5);
    border-color: #9945c5;
  }

  .form-check-label {
    font-size: 0.95rem;
    color: #555;
  }

  .btn-orange {
    background-color: #9945c5;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
  }

  .btn-orange:hover {
    background-color: #893fb1;
    color: #fff;
  }

  .btn-outline-secondary {
    border-radius: 6px;
    /* padding: 10px 15px; */
    font-weight: 500;
    color: #555;
  }

  .btn-outline-secondary:hover {
    background-color: #ddd;
    color: #333;
  }

  /* .outer-container {
    padding: 15px px;
  } */

  .text-center {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }

  .d-flex {
    justify-content: space-between;
  }

  p {
    font-size: 1rem;
    color: #555;
  }
  #try_service,
#try_country {
    max-height: 150px; /* Adjust the height as needed */
    overflow-y: auto; /* Enables vertical scrolling if content overflows */
    border: 1px solid #ddd; /* Optional: Add a border for better visibility */
    padding: 5px; /* Optional: Add padding for spacing */
    scrollbar-width: thin; /* For modern browsers: makes the scrollbar thinner */
    scrollbar-color: #888 #f1f1f1; /* Customize scrollbar colors */
}

/* For Webkit-based browsers (e.g., Chrome, Safari) */
#try_service::-webkit-scrollbar,
#try_country::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

#try_service::-webkit-scrollbar-thumb,
#try_country::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

#try_service::-webkit-scrollbar-thumb:hover,
#try_country::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color when hovered */
}

#try_service::-webkit-scrollbar-track,
#try_country::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Background of the scrollbar track */
}
