/* General Styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/plane.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-y: auto; /* Allow scrolling for long content */
  font-family: "Trebuchet MS", sans-serif;
}

  
  /* Flight Section */
  .flight {
    padding: 20px;
  }
  
  .flight-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Form Styles */
  .flightbook1,
  .flightbook2,
  .flightbook3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
  }
  
  .field {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  /* Input Styles */
  input[type="text"],
  input[type="date"],
  input[type="email"] {
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 10px;
    font-size: 16px;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
  }
  
  input[type="text"]:focus,
  input[type="date"]:focus {
    border-bottom: 2px solid #007BFF;
  }
  
  label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
  }
  
  /* Search Button */
  .search {
    text-align: center;
    margin-top: 20px;
  }
  
  button {
    background-color: #007BFF;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }

  .lastdescription {
    font-family: "Trebuchet MS", sans-serif;
    padding: 50px;
    text-align: center;
    font-size: 14px; /* Smaller font size */
    color: #555; /* Grey color */
    margin: 0 auto;
    max-width: 800px; /* Center alignment with width restriction */
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    .flightbook1,
    .flightbook2,
    .flightbook3 {
      flex-direction: column;
      gap: 15px;
    }
  
    h1 {
      font-size: 20px;
    }
  
    input[type="text"],
    input[type="date"] {
      font-size: 14px;
    }
  
    button {
      width: 100%;
      padding: 14px;
      font-size: 18px;
    }
  }
  