/* Base styles */
.booking-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.booking-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.booking-header {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

.booking-content {
    padding: 20px;
}

/* Form elements */
.form-group {
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Date columns */
.date-column {
    width: 50%;
    vertical-align: top;
    padding: 10px;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .date-column {
        width: 100%;
        display: block;
    }
    
    .dateTable td {
        display: block;
        width: 100% !important;
    }
    
    .booking-header {
        padding: 15px 10px;
    }
    
    .booking-content {
        padding: 10px;
    }
    
    .RadDatePicker {
        width: 100% !important;
    }
    
    .RadDatePicker table {
        width: 100% !important;
    }
}

/* Price table styles */
.priceTable {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.priceTable td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.priceTable tr:last-child td {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.1em;
}

/* Terms and conditions */
.terms-conditions {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}

/* Error messages */
.error-message {
    color: #d9534f;
    margin: 10px 0;
    padding: 10px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}