p{
	color: #fff;
}

.form-step {
    display: none;
}

.form-step:first-of-type {
    display: block;
}

.hidden {
    display: none;
}

#legs-container {
    margin-top: 20px;
}


/* General Form Styles */
form {
    max-width: 800px; /* Limit form width for better readability */
    margin: 20px auto; /* Centering form on the page */
    padding: 20px;
    background: #f9f9f9; /* Light background for the form area */
    border: 1px solid #ddd; /* Subtle border */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Soft shadow around form */
}

h3 {
	color: #fff !important;
}

h4 {
	color: #fff !important;
}



/* Labels and Inputs for better alignment */
label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="email"],
select,
textarea {
    width: 100%; /* Full width */
    padding: 8px; /* Comfortable padding */
    margin-bottom: 10px; /* Space between fields */
    box-sizing: border-box; /* Include padding and border in width */
    border: 1px solid #ccc;
    border-radius: 4px;
	color: #fff;
}

/* Styling for radio buttons and checkboxes */
input[type="radio"],
input[type="checkbox"] {
    margin-right: 5px; /* Space between checkbox/radio and its label */
}

/* Buttons Styling */
button,
input[type="submit"] {
    background-color: #0056b3; /* Brand color for action buttons */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer; /* Cursor pointer to indicate clickable */
    margin-top: 10px;
}

button:hover,
input[type="submit"]:hover {
    background-color: #004494; /* Darker shade on hover */
}

/* Utility classes for showing/hiding elements */
.hidden {
    display: none; /* Hide elements when not needed */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    form {
        padding: 10px;
    }

    label, input, select, button {
        font-size: 14px; /* Smaller font size for small devices */
    }
}

/* Specific Styling for Sections */
.trip-details {
    padding: 15px;
    background-color: #ffffff; /* Contrast background for trip details */
    border: 1px solid #eee;
    margin-bottom: 15px; /* Space between sections */
}

/* Adjustments for plus/minus buttons in passenger details */
.plus, .minus {
    width: 30px; /* Fixed width for buttons */
    height: 30px; /* Fixed height for buttons */
    line-height: 30px; /* Center text vertically */
    display: inline-block;
    text-align: center;
    background-color: #e0e0e0; /* Light grey background */
    color: #000;
    border-radius: 50%; /* Circular buttons */
    margin: 0 5px; /* Space around buttons */
    user-select: none; /* Prevent text selection */
}

.flight-booking-form p {
  color: #fff;
  font-size: unset;
}


