/* icons for textbox */

  /* Style for form inputs with icons */
  .form-wrap {
    position: relative;
    margin-bottom: 20px;
  }

  .form-input {
    padding-left: 35px; /* Create space for the icon */
  }

  .icon-input {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #007bff;
    pointer-events: none;
  }

  /* Style for select inputs with icons */
  .form-wrap select.form-input {
    padding-left: 35px; /* Space for the icon */
  }

  .form-wrap select.form-input + .icon-input {
    top: 50%;
    transform: translateY(-50%);
  }

  /* Style for the confirm booking checkbox */
  .custom-checkbox input[type="checkbox"] {
    margin-right: 10px;
  }


  .button {
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }

  .button:hover {
    background-color: #0056b3;
  }

  /* End Of icons textbox */