.booking-form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-form-container h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.booking-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

.booking-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.booking-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.booking-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking-submit-btn:hover {
    background-color: #45a049;
}

/* Admin styles */
.status-pending {
    color: #856404;
    background-color: #fff3cd;
    padding: 5px 10px;
    border-radius: 3px;
}

.status-confirmed {
    color: #155724;
    background-color: #d4edda;
    padding: 5px 10px;
    border-radius: 3px;
}

.status-cancelled {
    color: #721c24;
    background-color: #f8d7da;
    padding: 5px 10px;
    border-radius: 3px;
}