/* Form Container */
#information_Form {
    width: 90%; 
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Updated box shadow */
}

/* Section Headers */
#information_Form h3 {
    color: #2A6375; /* Blue */
    margin-bottom: 10px;
    font-weight: bolder;
    position: relative; /* Add position relative */
    padding-bottom: 10px; /* Add padding to the bottom */
    border-bottom: 2px solid #2A6375; /* Add a solid border to the bottom */
}

/* Update for "Booking Information" and "How many seats would you like to book on" */
.booking-info h3,
.quantity h3 {
    margin-bottom: 20px; /* Increase margin bottom */
}

/* Update for "Terms & Conditions" and "Customer Information" */
.terms-and-conditions h3,
.customer-information h3 {
    margin-bottom: 20px; /* Increase margin bottom */
}

/* Section Dividers */
#information_Form section {
    margin-bottom: 20px;
    border-bottom: 1px solid #58595B; /* Grey */
    padding-bottom: 20px;
}

/* Form Labels */
#information_Form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #231F20; /* Black */
}

/* Form Inputs */
#information_Form input[type="text"],
#information_Form input[type="email"],
#information_Form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #58595B; /* Grey */
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #231F20; /* Black */
}

#information_Form input[type="text"]:focus,
#information_Form input[type="email"]:focus,
#information_Form input[type="number"]:focus,
#information_Form select:focus {
    border-color: #2A6375; /* Blue */
}

#information_Form ul {
  list-style-type: none;
  padding: 0;
}

/* Plus-Minus Input */
#information_Form input[type="number"]{
    width: 75%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #58595B; /* Grey */
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #231F20; /* Black */
    display: flex;
    justify-content: center;
}
#information_Form .plus-minus-input {
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

#information_Form .plus-minus-input .input-group-button {
    color: #2A6375; /* Blue */
    flex: 0 0 auto; /* Added */
    margin-right: 10px; /* Added margin between buttons and input */
}
#information_Form .plus-minus-input .input-group-field {
    flex: 1; /* Fill remaining space */
    margin-right: 10px; /* Adjust margin between input field and buttons */
}

#information_Form .plus-minus-input .input-group-button button {
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

#information_Form .plus-minus-input .input-group-button button:hover {
    color: #4caf50; /* Hover color */
}

#information_Form .plus-minus-input-adult,
#information_Form .plus-minus-input-children,
#information_Form .plus-minus-input-youngChildren{
    display: flex;
    justify-content: center;
}

/* Form Button */
#information_Form button {
    background-color: #2A6375; /* Blue */
    color: #fff;
    padding: 11px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Add color transition */
}

#quantityAdults .input-group-button,
#quantityChildren .input-group-button,
#quantityYoungChildren .input-group-button{
    margin-left: 1%;
    margin-right: 1%;
}

#information_Form button:hover {
    background-color: hsl(194, 47%, 50%); /* Hover color: Lighter shade of blue */
}

#information_Form button:disabled{
    background-color: #58595B;
}

/* Read-only Input Fields */
#information_Form input[readonly] {
    background-color: transparent; /* Make background transparent */
    color: #666; /* Change text color */
    cursor: not-allowed; /* Change cursor */
    border: none; /* Remove border */
    outline: none; /* Remove outline */
}

/* Icons */
.fa-solid {
    color: #2A6375; /* Blue */
    font-size: 20px; /* Adjust icon size */
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjustments for smaller screens */
    #information_Form input[type="number"]{
        width: 25%;
    }
}


/***********************/
/* Confirmation Dialog */

#confirmationDialog {
    width: 90%; 
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#confirmationDialog .cd-group {
    overflow: hidden; /* Clear floats */
}

#confirmationDialog .cd-group span {
    float: right; /* Float the spans to the right */
}

#confirmationDialog h3 {
    color: #2A6375; 
    margin-bottom: 20px; 
    font-weight: bolder;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #2A6375;
}

#confirmationDialog section {
    margin-bottom: 20px;
    border-bottom: 1px solid #58595B;
    padding-bottom: 20px;
}

#confirmationDialog label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #231F20;
}

#confirmationDialog input[type="text"],
#confirmationDialog input[type="email"],
#confirmationDialog select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #58595B;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #231F20;
}

#confirmationDialog button {
    background-color: #2A6375;
    color: #fff;
    padding: 11px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#confirmationDialog button:hover {
    background-color: hsl(194, 47%, 50%);
}

#confirmationDialog button.btn-secondary {
    background-color: #58595B;
    margin-right: 10px; /* Adjust spacing between buttons */
}

#confirmationDialog button.btn-secondary:hover {
    background-color: #414141;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    #confirmationDialog input[type="number"] {
        width: 25%;
    }
}
