/* General Reset */
body, h1, label, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Form Container */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header Style */
h1 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
}

/* Labels */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Input Fields */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Buttons */
button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    background-color: #0056b3;
    color: #fff;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #004494;
}

button:disabled {
    background-color: #555555;
    cursor: not-allowed;
}

/* Form Row and Column Layout */
.form-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows wrapping if there's not enough space */
    margin-bottom: 20px;
}

.form-label-input {
    flex: 1;
    margin-right: 10px; /* Space between columns */
    display: flex;
    flex-direction: column;
}

/* Remove margin from the last item in a row */
.form-row .form-label-input:last-child {
    margin-right: 0;
}

/* Quantity Controls */
.quantity-controls {

    display: flex;
    align-items: center;
    margin-top: 5px;
}

.quantity-controls button {

    text-align: center;
    background-color: #333333;
    border: 1px solid #ddd;
    font-size: 18px;
}

.quantity-controls input {
    width: 70%;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0px auto;
}

/* Ensure that the button spans the full width of the form */
#reserveButton {
    width: 100%; /* Full width */
    padding: 10px; /* Padding for better appearance */
    font-size: 16px; /* Font size */
    background-color: #000000; /* Background color */
    color: white; /* Text color */
    border: 1px solid #000000; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    display: block; /* Block level element */
    text-align: center; /* Center text */
}

#reserveButton:hover {
    color: black;
    background-color: #ffffff; /* Darker background on hover */
    border: 1px solid #000000;
}

iframe {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background: none;
    border: 0px;
    display: block;
   }