/* Flight Search Form Styles */
#flight-search-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    background-color: #f8f8f8;
    }

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
	text-align: initial;
}

input,
select,
button {
    font-size: 18px; /* Adjust the font size as needed */
    padding: 10px 20px; /* Adjust padding to increase button size */
    display: block;
    margin: 1px; /* Center the button horizontally with top and bottom margin */
}

/* Result Table Styles */
#flight-results {
    margin-top: 20px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #0073e6;
    color: #fff;
}

a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
body {
      font-family: Arial, sans-serif;
    }
    input::-webkit-date-and-time-value {
  text-align: left;
}


#flight-search input[type="date"]::-webkit-datetime-edit-day-field,
#flight-search input[type="date"]::-webkit-datetime-edit-month-field,
#flight-search input[type="date"]::-webkit-datetime-edit-year-field {
  text-align: left;
}


    #flight-search {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 5px;
      max-width: 100%;
      margin: inherit;
    }

    #flight-search input[type="text"],
    #flight-search input[type="date"],
    #flight-search input[type="number"],
    #flight-search input[type="submit"],
    #flight-search label {
      display: block;
      margin-bottom: 10px;
    }

    #flight-search input[type="text"],
    #flight-search input[type="date"],
    #flight-search input[type="number"],
    #flight-search input[type="submit"] {
      width: 100%;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ddd;
      box-sizing: border-box;
      height: 40px;
    }

    #flight-search input[type="submit"] {
      background-color: #4CAF50;
      color: white;
      border: none;
      cursor: pointer;
    }

    #returnDateField {
    display: block;
  }
  /* Add this CSS to left-align the labels */
  #flight-search label {
    text-align: left;
  }

  /* Add this CSS to left-align the selected dates in date pickers */
  #flight-search input[type="date"]::-webkit-datetime-edit-text {
    text-align: left;
    -webkit-appearance: none; /* Override iOS Safari styling */
  }

  #flight-search input[type="date"]::-webkit-datetime-edit-day-field,
  #flight-search input[type="date"]::-webkit-datetime-edit-month-field,
  #flight-search input[type="date"]::-webkit-datetime-edit-year-field {
    text-align: left;
  }
/* Add this CSS to your stylesheet or plugin */
.ui-menu {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.ui-menu li {
    padding: 8px 12px; /* Add padding for better spacing */
    border-bottom: 1px solid #ccc; /* Add a separator line between results */
    cursor: pointer; /* Change the cursor to a pointer on hover */
}

.ui-menu li:last-child {
    border-bottom: none; /* Remove the separator line for the last item */
}

.ui-menu li:hover {
    background-color: #f2f2f2; /* Change background color on hover */
}
    /* Style for radio button container */
    .radio-container {
      display: flex;
      justify-content: space-between;
    }
/* Add this CSS to your stylesheet or plugin */
.ui-autocomplete {
    z-index: 1000; /* Set a higher z-index value */
}
    /* Style for radio buttons */
    .radio-container label {
      flex: 1;
      margin-right: 10px;
    }
/* Add this CSS to your stylesheet or plugin */
.ui-autocomplete {
    z-index: 1000; /* Set a higher z-index value */
    position: absolute; /* Position the autosuggest list absolutely */
    background: white; /* Set a white background to cover the form */
    width: 100%; /* Match the width of the search form */
    max-width: 500px; /* Set a maximum width if needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for a pop-up effect */
}

/* Add this CSS to adjust the autosuggest list items */
.ui-menu-item {
    padding: 10px; /* Add padding for better spacing */
    border-bottom: 1px solid #e0e0e0; /* Add a border between items */
}

/* Add this CSS to style the autosuggest list items on hover */
.ui-menu-item:hover {
    background-color: #ffffff; /* Change background color on hover */
    cursor: pointer;
}