/**
 * Booking styles
 */

.booking-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.booking-form textarea {
    min-height: 100px;
    resize: vertical;
}

.booking-form .booking-details {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.booking-form .booking-details p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #6c757d;
}

.booking-form .booking-details .total-price {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
    font-size: 1.1em;
    font-weight: 600;
    color: #28a745;
}

.booking-form .submit-button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking-form .submit-button:hover {
    background: #0056b3;
}

.booking-form .submit-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.booking-form .booking-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9em;
    text-align: center;
}

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

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

/* Mobile optimization */
@media (max-width: 768px) {
    .booking-form {
        padding: 15px;
    }
    
    .booking-form .form-group {
        margin-bottom: 15px;
    }
    
    .booking-form label {
        font-size: 0.9em;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 8px;
        font-size: 0.9em;
    }
    
    .booking-form .booking-details {
        padding: 10px;
    }
    
    .booking-form .booking-details p {
        font-size: 0.85em;
    }
    
    .booking-form .booking-details .total-price {
        font-size: 1em;
    }
    
    .booking-form .submit-button {
        padding: 10px;
        font-size: 0.9em;
    }
    
    .booking-form .booking-message {
        font-size: 0.85em;
    }
} 