/* Booking Form Styles */
.booking-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-form h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.duration-selector {
    display: flex;
    gap: 15px;
}

.duration-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.duration-input input {
    width: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.duration-input span {
    color: #666;
}

.booking-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
    border-left: 4px solid #4CAF50;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-weight: bold;
    font-size: 18px;
    color: #4CAF50;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
}

.btn-book {
    width: 100%;
    padding: 15px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #45a049;
}

.btn-book:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#booking-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

#booking-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 10px;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .duration-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .duration-input input {
        width: 100%;
    }
}

/* jQuery UI Datepicker override */
.ui-datepicker {
    z-index: 9999 !important;
}