/* Container Styling */
#cb-booking-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#cb-booking-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #1a202c;
    text-align: center;
}

/* Form Elements */
#cb-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#cb-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: -10px;
}

#cb-form input, 
#cb-form select {
    width: 100%;
    padding: 12px;
    border: 1.5px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

#cb-form input:focus, 
#cb-form select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

/* Button Styling */
#cb-form button {
    background-color: #3182ce;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

#cb-form button:hover {
    background-color: #2b6cb0;
}

#cb-form button:active {
    transform: translateY(1px);
}

/* Feedback Messages */
#cb-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    display: none; /* Hidden until AJAX call */
}

/* Admin Table Styling (Optional, for the Dashboard) */
.cb-admin-table {
    margin-top: 20px;
    border-collapse: collapse;
    width: 100%;
}

.cb-admin-table th, 
.cb-admin-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}