		/* Custom Modal Styling */
		#bookingModal .modal-header {
		    background-color: #F7B205;
		    color: #000;
		    /* Black text for better contrast */
		    border-bottom: none;
		    padding: 15px 20px;
		}

		#bookingModal .modal-header .close {
		    color: #000;
		    opacity: 1;
		    text-shadow: none;
		}

		#bookingModal .modal-content {
		    border-radius: 10px;
		    border: none;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
		}

		#bookingModal .btn-primary {
		    background-color: #F7B205;
		    border-color: #F7B205;
		    color: #000;
		    padding: 8px 25px;
		    font-weight: 600;
		}

		#bookingModal .btn-primary:hover {
		    background-color: #e6a500;
		    border-color: #e6a500;
		}

		/* Acknowledgement Modal Styling */
		#ackModal .modal-header {
		    background-color: #F7B205;
		    color: #000;
		    border-bottom: none;
		    padding: 15px 25px;
		}

		#ackModal .modal-body {
		    padding: 25px;
		}

		#ackModal .fa-check-circle {
		    color: #28a745;
		    margin-bottom: 20px;
		}

		#ackModal h4 {
		    color: #333;
		    margin-bottom: 10px;
		}

		#ackModal .text-muted {
		    color: #6c757d !important;
		}

		.ack-details-container {
		    background-color: #f8f9fa;
		    padding: 20px;
		    border-radius: 8px;
		    height: 100%;
		}

		.ack-details-container h5 {
		    color: #333;
		    margin-bottom: 20px;
		    padding-bottom: 10px;
		    border-bottom: 1px solid #eee;
		}

		.detail-row {
		    display: flex;
		    margin-bottom: 12px;
		    padding-bottom: 12px;
		    border-bottom: 1px solid #eee;
		}

		.detail-row:last-child {
		    border-bottom: none;
		    margin-bottom: 0;
		    padding-bottom: 0;
		}

		.detail-label {
		    font-weight: 600;
		    color: #555;
		    min-width: 120px;
		    display: inline-block;
		}

		.detail-value {
		    color: #333;
		    flex: 1;
		}

		#ackModal .modal-footer {
		    border-top: none;
		    padding: 15px 25px;
		    justify-content: flex-end;
		}

		#ackModal .btn-primary {
		    background-color: #F7B205;
		    border-color: #F7B205;
		    color: #000;
		    min-width: 120px;
		}