/* General Form Styling */
#booking-form {
    max-width: 600px;
    margin-left: auto;
    background-color: #464646;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    font-family: 'Sofia Sans Condensed';
    color: #ffffff;
	height: 100vh;
}

/* Heading Styles */
#booking-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
	text-transform: uppercase;
    color: #ffffff; /* White heading */
}

.booking-form-step{
	padding: 30px !important;
}
#booking-form-step-6{
	padding: 0px !important;
}

/* Label Styles */
#booking-form label {
    margin-top: 10px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: "Sofia Sans Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

/* Input Fields */
#booking-form input[type="text"],
#booking-form input[type="date"],
#booking-form input[type="email"],
#booking-form input[type="tel"],
#booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555555;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    background-color: #fff;
    color: #191919;
	text-transform: uppercase;
}

#booking-form textarea{
	width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555555;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    background-color: #fff;
    color: #191919;
}

/* Textarea Specific */
#booking-form textarea {
    height: 100px;
    resize: vertical;
}

/* Radio Buttons */
#booking-form input[type="radio"] {
    margin-right: 20px;
}
#booking-form fieldset{
	border: none;
}
#booking-form fieldset.step-buttons {
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
	padding: 10px 0;
}

#booking-form fieldset input[type="radio"] {
    margin-right: 10px;
}
/* Buttons */
#booking-form button {
    background-color: #e74c3c; /* Red primary color for "Next" button */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s;
	text-transform: uppercase;	
	min-width: 90px;
}

#booking-form button:hover {
    background-color: #c0392b; /* Darker red on hover */
}

#booking-form button.next-step,
#booking-form button#add-entry,
#booking-form button#submit-booking {
    width: auto;
}

#booking-form button.prev-step {
    background-color: #ffffff; /* White for "Back" button */
    color: #333333;
}

#booking-form button.prev-step:hover {
    background-color: #cccccc; /* Light grey on hover */
}

#booking-form button.delete-entry {
    background-color: #191919;
    border: none;
    color: #ffffff;
    font-size: 14pcx;
    cursor: pointer;
    transition: color 0.3s;
}

#booking-form button.delete-entry:hover {
    color: #e74c3c; /* Highlight delete button on hover */
}

/* Hide steps initially */
.booking-form-step {
    display: none;
}

/* Error Input Fields */
#booking-form input.error,
#booking-form textarea.error,
#booking-form select.error {
    border: 1px solid #e74c3c;
    background-color: #5a2c2c;
	color: #fff;
}

/* Reservation Entries */
.reservation-entry {
    background-color: #2e2e2e;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.reservation-entry-number {
    font-weight: bold;
    color: #ffffff;
}

.reservation-entry .entry-details {
    flex-grow: 1;
    color: #bfbfbf;
    margin-left: 15px;
}

/* Add Entry Button */
#add-entry {
    background-color: #555555; /* Grey add more button */
    color: #ffffff;
    border-radius: 50px;
}

#add-entry:hover {
    background-color: #777777;
}

/* Preview Details Styling */
#preview-details {
    padding: 0;
    background-color: transparent;
    border-radius: 4px;
    margin-bottom: 20px;
}

#preview-details h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

#preview-reservation {
    margin-bottom: 20px;
    font: 16px Roboto;
    line-height: 24px;
    letter-spacing: -0.16px;
}

#preview-details p {
    margin-bottom: 5px;
    font: 16px Roboto;
    line-height: 24px;
    letter-spacing: -0.16px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    #booking-form {
        padding: 20px;
    }

    #booking-form button {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* General Form Styling for Step 3 */

   #booking-form-step-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background-color: transparent;
    border-radius: 8px;
    color: #ffffff;
	 text-align: left;
}


/* Reservation Details Container */

#reservation-details{
	width: 100%;
}
.reservation-entry {
    background-color: #4a4a4a;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px; /* Reduced spacing between entries */
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
	display: flex;
	flex-direction: column;
}

/* Equipment Name Header */
.reservation-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.reservation-entry-header h4 {
    font-size: 1em;
    margin: 0;
    color: #ffffff;
}

.reservation-entry-header .entry-date {
    font-size: 0.85em;
    color: #cccccc;
}

.reservation-entry-header .entry-icons {
    display: flex;
    gap: 10px;
}

.reservation-entry-header .entry-icons button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.3em;
    transition: color 0.3s;
}

.reservation-entry-header .entry-icons button:hover {
    color: #e74c3c;
}

/* Location and Unit Details */
.reservation-details-content {
    padding: 5px 0;
    border-bottom: 1px solid #5a5a5a;
    margin-bottom: 5px;
}

.reservation-details-content p {
    margin: 3px 0;
    font-size: 0.9em;
    color: #cccccc;
}

/* Note Field */
.add-note-container {
    font-size: 0.9em;
    color: #cccccc;
}

/* Add More Items Button */
#add-entry {
    background-color: #555555; /* Grey add more button */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px; /* Space between entries and add button */
}

#add-entry:hover {
    background-color: #777777;
}

/* Button Group for Navigation */
.button-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

#booking-form-step-3 button.prev-step,
#booking-form-step-3 button.next-step {
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

#booking-form-step-3 button.prev-step {
    background-color: #ffffff;
    color: #333333;
}

#booking-form-step-3 button.prev-step:hover {
    background-color: #cccccc;
}

#booking-form-step-3 button.next-step {
    background-color: #e74c3c;
    color: #ffffff;
}

#booking-form-step-3 button.next-step:hover {
    background-color: #c0392b;
}

div.delivery_options{
	text-transform: uppercase;
}

.reservation-entry-number {
    font-weight: bold;
    color: #ffffff;
    font-size: 20px;
    text-transform: uppercase;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    #booking-form-step-3 {
        padding: 15px;
    }

    .reservation-entry {
        width: 100%;
    }

    #add-entry {
        width: 100%;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    #booking-form-step-3 button {
        width: 100%;
        margin-bottom: 10px;
    }
}
