/* ===========================
   CGCS Booking Page Styles
   =========================== */

.cgcs-booking-container {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cgcs-booking-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.cgcs-booking-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.cgcs-booking-form h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.cgcs-booking-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #444;
}

.cgcs-booking-form input,
.cgcs-booking-form select,
.cgcs-booking-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.cgcs-booking-form textarea {
    resize: vertical;
}

.cgcs-submit-btn {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s ease;
}

.cgcs-submit-btn:hover {
    background: #155bb5;
}
