/* ChamberHQ Public Styles */

/* Screen reader only - visually hidden but accessible */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.chq-events-list {
    display: grid;
    gap: 20px;
}

.chq-event-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.chq-event-card h3 {
    margin: 0 0 10px;
    color: #1d2327;
}

.chq-event-date {
    color: #2271b1;
    font-weight: 600;
    margin: 0 0 5px;
}

.chq-event-location {
    color: #646970;
    margin: 0 0 15px;
}

.chq-event-price {
    color: #646970;
    font-size: 14px;
    margin: 15px 0;
}

/* Buttons */
.chq-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.chq-btn:hover {
    background: #135e96;
    color: #fff;
}

.chq-btn-secondary {
    background: #f0f0f1;
    color: #1d2327;
}

.chq-btn-secondary:hover {
    background: #dcdcde;
    color: #1d2327;
}

.chq-btn-primary {
    background: #2271b1;
}

/* Single Event */
.chq-single-event {
    max-width: 800px;
}

.chq-single-event h2 {
    margin: 0 0 20px;
    color: #1d2327;
}

.chq-event-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.chq-event-details p {
    margin: 8px 0;
}

.chq-event-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Registration Form */
.chq-registration-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
}

.chq-registration-form h3 {
    margin: 0 0 20px;
    color: #1d2327;
}

.chq-registration-form h4 {
    margin: 20px 0 10px;
    color: #1d2327;
    font-size: 16px;
}

.chq-form-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.chq-form-help {
    color: #646970;
    font-size: 13px;
    margin: 5px 0 15px;
}

/* Radio Cards */
.chq-radio-card {
    display: block;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.chq-radio-card:hover {
    border-color: #2271b1;
}

.chq-radio-card input {
    margin-right: 10px;
}

.chq-radio-card input:checked + span {
    color: #2271b1;
}

.chq-radio-card input:checked ~ span {
    color: #2271b1;
}

.chq-radio-card span small {
    color: #646970;
}

/* Form Fields */
.chq-registration-form p {
    margin: 15px 0;
}

.chq-registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1d2327;
}

.chq-registration-form input[type="text"],
.chq-registration-form input[type="email"],
.chq-registration-form input[type="tel"],
.chq-registration-form select,
.chq-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.chq-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23646970' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.chq-registration-form input:focus,
.chq-registration-form select:focus,
.chq-select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

/* Member Verification */
#chq-member-result {
    margin: 15px 0;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

#chq-member-result.success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#chq-member-result.error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Registration Result */
#chq-registration-result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    display: none;
}

#chq-registration-result.success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#chq-registration-result.error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Checkbox styling */
.chq-registration-form input[type="checkbox"] {
    margin-right: 8px;
}

/* Submit Section */
.chq-submit-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* ============================
   Frontend Check-in Shortcode
   ============================ */
.chq-frontend-checkin {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chq-checkin-error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    padding: 20px;
    border-radius: 6px;
    color: #8b0000;
}

/* Event Selection */
.chq-checkin-select-event h2 {
    margin-bottom: 20px;
}

.chq-event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chq-event-list li {
    margin-bottom: 10px;
}

.chq-event-list li a {
    display: block;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.chq-event-list li a:hover {
    border-color: #2271b1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chq-event-list li.chq-event-today a {
    border-color: #00a32a;
    background: #edfaef;
}

.chq-event-list .chq-event-meta {
    display: block;
    font-size: 13px;
    color: #646970;
    margin-top: 4px;
}

.chq-badge-today {
    display: inline-block;
    background: #00a32a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

/* Check-in Header */
.chq-checkin-header {
    margin-bottom: 25px;
}

.chq-back-link {
    display: inline-block;
    margin-bottom: 10px;
    color: #2271b1;
    text-decoration: none;
    font-size: 13px;
}

.chq-back-link:hover {
    text-decoration: underline;
}

.chq-checkin-header h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.chq-event-info {
    color: #646970;
    margin: 0;
}

/* Check-in Stats */
.chq-checkin-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.chq-stat {
    background: #f6f7f7;
    padding: 15px 25px;
    border-radius: 6px;
    text-align: center;
}

.chq-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1d2327;
}

.chq-stat-label {
    font-size: 12px;
    color: #646970;
    text-transform: uppercase;
}

/* Quick Add */
.chq-checkin-quickadd {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}

.chq-checkin-quickadd h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
}

.chq-quickadd-subsection {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.chq-quickadd-subsection:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.chq-quickadd-subsection h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #646970;
}

.chq-quickadd-row {
    display: flex;
    gap: 10px;
}

.chq-quickadd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.chq-quickadd-grid input,
.chq-quickadd-grid select {
    padding: 10px 12px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    font-size: 14px;
}

.chq-quickadd-grid input:focus,
.chq-quickadd-grid select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.chq-select-large {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    font-size: 14px;
}

/* Check-in Section */
.chq-checkin-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.chq-checkin-section h3 {
    margin: 0;
    padding: 15px 20px;
    background: #f6f7f7;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

.chq-count {
    font-weight: normal;
    color: #646970;
}

.chq-checkin-table {
    width: 100%;
    border-collapse: collapse;
}

.chq-checkin-table th,
.chq-checkin-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f1;
}

.chq-checkin-table th {
    background: #fafafa;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #646970;
}

.chq-checkin-table tr:last-child td {
    border-bottom: none;
}

.chq-checkin-table tr.chq-checked-in td {
    background: #edfaef;
}

.chq-no-attendees {
    padding: 20px;
    color: #646970;
    font-style: italic;
    margin: 0;
}

/* Toggle Switch */
.chq-toggle-check {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 28px;
    cursor: pointer;
}

.chq-toggle-check input {
    opacity: 0;
    width: 0;
    height: 0;
}

.chq-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c3c4c7;
    border-radius: 28px;
    transition: 0.3s;
}

.chq-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.chq-toggle-check input:checked + .chq-toggle-slider {
    background-color: #00a32a;
}

.chq-toggle-check input:checked + .chq-toggle-slider:before {
    transform: translateX(22px);
}

.chq-badge-success {
    background: #00a32a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.chq-badge-muted {
    background: #c3c4c7;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
}

/* ============================
   Frontend Email Groups Shortcode
   ============================ */
.chq-frontend-emails {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chq-email-error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    padding: 20px;
    border-radius: 6px;
    color: #8b0000;
}

.chq-emails-intro {
    color: #646970;
    margin-bottom: 25px;
}

.chq-email-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.chq-email-section h3 {
    margin: 0;
    padding: 12px 20px;
    background: #f6f7f7;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

.chq-fe-email-table {
    width: 100%;
    border-collapse: collapse;
}

.chq-fe-email-table th,
.chq-fe-email-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f1;
    font-size: 14px;
}

.chq-fe-email-table th {
    background: #fafafa;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #646970;
}

.chq-fe-email-table tr:last-child td {
    border-bottom: none;
}

.chq-fe-email-table tr:hover td {
    background: #f9f9f9;
}

.chq-fe-events-table {
    table-layout: fixed;
}

.chq-fe-events-table th:first-child,
.chq-fe-events-table td:first-child {
    width: 30%;
}

.chq-fe-events-table th:nth-child(2),
.chq-fe-events-table td:nth-child(2) {
    width: 15%;
}

.chq-fe-count {
    display: inline-block;
    background: #f0f0f1;
    color: #1d2327;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
}

.chq-fe-actions {
    white-space: nowrap;
}

.chq-fe-none {
    color: #a7aaad;
    font-style: italic;
    font-size: 13px;
}

.chq-tier-badge {
    display: inline-block;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.chq-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.chq-btn-secondary {
    background: #f0f0f1;
    color: #1d2327;
    border-color: #c3c4c7;
}

.chq-btn-secondary:hover {
    background: #e0e0e0;
}

/* Responsive - Tablet */
@media screen and (max-width: 768px) {
    .chq-quickadd-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .chq-fe-events-table {
        table-layout: auto;
    }
    
    .chq-fe-events-table th:nth-child(3),
    .chq-fe-events-table td:nth-child(3),
    .chq-fe-events-table th:nth-child(4),
    .chq-fe-events-table td:nth-child(4) {
        width: auto;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 600px) {
    /* Events List */
    .chq-event-card,
    .chq-registration-form {
        padding: 15px;
    }
    
    .chq-event-card h3 {
        font-size: 18px;
    }
    
    .chq-event-price {
        font-size: 13px;
    }
    
    /* Single Event */
    .chq-single-event {
        padding: 0 10px;
    }
    
    .chq-event-details {
        padding: 15px;
    }
    
    /* Registration Form */
    .chq-registration-form h3 {
        font-size: 18px;
    }
    
    .chq-radio-card {
        padding: 12px 15px;
    }
    
    .chq-radio-card span {
        font-size: 14px;
    }
    
    .chq-registration-form input[type="text"],
    .chq-registration-form input[type="email"],
    .chq-registration-form select {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .chq-member-section p,
    .chq-guest-section p {
        margin-bottom: 15px;
    }
    
    .chq-member-section label,
    .chq-guest-section label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 14px;
    }
    
    .chq-member-section input,
    .chq-member-section select,
    .chq-guest-section input {
        width: 100%;
        padding: 12px;
        border: 1px solid #c3c4c7;
        border-radius: 4px;
        font-size: 16px;
        box-sizing: border-box;
    }
    
    .chq-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .chq-btn-small {
        width: auto;
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Check-in */
    .chq-checkin-stats {
        flex-direction: column;
    }
    
    .chq-stat {
        text-align: center;
    }
    
    .chq-checkin-header h2 {
        font-size: 20px;
    }

    .chq-quickadd-row {
        flex-direction: column;
    }

    .chq-quickadd-grid {
        grid-template-columns: 1fr;
    }
    
    .chq-quickadd-grid input,
    .chq-quickadd-grid select {
        font-size: 16px;
    }

    .chq-checkin-table th,
    .chq-checkin-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .chq-checkin-table th:nth-child(2),
    .chq-checkin-table td:nth-child(2) {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .chq-toggle-check {
        width: 44px;
        height: 24px;
    }
    
    .chq-toggle-slider:before {
        height: 18px;
        width: 18px;
    }
    
    .chq-toggle-check input:checked + .chq-toggle-slider:before {
        transform: translateX(20px);
    }

    /* Email Groups */
    .chq-fe-email-table th,
    .chq-fe-email-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .chq-fe-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .chq-fe-count {
        display: block;
        margin-bottom: 6px;
    }
    
    .chq-email-section h3 {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    /* Event List in Email Groups */
    .chq-fe-events-table th:first-child,
    .chq-fe-events-table td:first-child {
        width: auto;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .chq-fe-events-table th:nth-child(2),
    .chq-fe-events-table td:nth-child(2) {
        display: none;
    }
    
    /* Benefits responsive */
    .chq-benefits-grid {
        --chq-benefit-columns: 1 !important;
    }
}

/* ========================================
   FRONTEND CHECK-IN SHORTCODE
   ======================================== */

.chq-fe-checkin {
    max-width: 1000px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chq-fe-checkin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    flex-wrap: wrap;
    gap: 16px;
}

.chq-fe-checkin-event-info h2 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #1e1e1e;
}

.chq-fe-event-meta {
    margin: 0;
    color: #646970;
    font-size: 14px;
}

.chq-fe-checkin-stats {
    display: flex;
    gap: 24px;
}

.chq-fe-stat {
    text-align: center;
    padding: 12px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.chq-fe-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1;
}

.chq-fe-stat-label {
    display: block;
    font-size: 12px;
    color: #646970;
    margin-top: 4px;
}

/* Tabs */
.chq-fe-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e5e5e5;
}

.chq-fe-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #646970;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.chq-fe-tab:hover {
    color: #1e1e1e;
    background: #f9f9f9;
}

.chq-fe-tab.active {
    color: #2271b1;
    border-bottom-color: #2271b1;
}

/* Tab Content */
.chq-fe-tab-content {
    display: none;
}

.chq-fe-tab-content.active {
    display: block;
}

/* Sections */
.chq-fe-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.chq-fe-section h3 {
    margin: 0 0 16px;
    font-size: 16px;
    color: #1e1e1e;
}

.chq-fe-description {
    margin: 0 0 16px;
    color: #646970;
    font-size: 14px;
}

.chq-fe-empty {
    text-align: center;
    padding: 40px;
    color: #646970;
}

/* Check-in Table */
.chq-fe-table {
    width: 100%;
    border-collapse: collapse;
}

.chq-fe-table th,
.chq-fe-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f1;
}

.chq-fe-table th {
    background: #fafafa;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #646970;
}

.chq-fe-table tr.chq-checked-in {
    background: #f0f7f0;
}

.chq-fe-table tr.chq-checked-in td {
    border-color: #c6e3c6;
}

/* Tier Chips */
.chq-tier-chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Forms */
.chq-fe-form {
    max-width: 500px;
}

.chq-fe-form-row {
    margin-bottom: 16px;
}

.chq-fe-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.chq-fe-form-group {
    display: flex;
    flex-direction: column;
}

.chq-fe-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #1e1e1e;
}

.chq-fe-form input,
.chq-fe-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.chq-fe-form input:focus,
.chq-fe-form select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
}

/* Event selector */
.chq-event-selector-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.chq-event-selector-form .chq-select {
    min-width: 300px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .chq-fe-checkin {
        padding: 0 10px;
    }
    
    .chq-fe-checkin-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .chq-fe-checkin-event-info h2 {
        font-size: 20px;
    }
    
    .chq-fe-checkin-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .chq-fe-stat {
        padding: 10px 16px;
    }
    
    .chq-fe-stat-number {
        font-size: 22px;
    }
    
    .chq-fe-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .chq-fe-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .chq-fe-tab {
        flex-shrink: 0;
        padding: 10px 14px;
        font-size: 13px;
        text-align: center;
        white-space: nowrap;
    }
    
    .chq-fe-section {
        padding: 15px;
    }
    
    .chq-fe-section h3 {
        font-size: 15px;
    }
    
    .chq-fe-form-row-2 {
        grid-template-columns: 1fr;
    }
    
    /* Make table responsive - card layout on mobile */
    .chq-fe-table {
        display: block;
    }
    
    .chq-fe-table thead {
        display: none;
    }
    
    .chq-fe-table tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .chq-fe-table tr {
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        padding: 12px;
    }
    
    .chq-fe-table tr.chq-checked-in {
        border-color: #c6e3c6;
    }
    
    .chq-fe-table td {
        display: block;
        padding: 4px 0;
        border: none;
    }
    
    .chq-fe-table td:first-child {
        padding-bottom: 8px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 8px;
    }
    
    .chq-fe-table td:last-child {
        padding-top: 8px;
    }
    
    .chq-fe-table td:nth-child(3) {
        display: block;
    }
    
    .chq-tier-chip {
        margin-left: 0;
        margin-top: 6px;
        display: inline-block;
    }
    
    .chq-event-selector-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .chq-event-selector-form .chq-select {
        min-width: 100%;
    }
    
    .chq-event-selector-form .chq-btn {
        width: 100%;
    }
}

/* ========================================
   SINGLE EVENT VIEW
   ======================================== */

.chq-single-event {
    max-width: 1000px;
    margin: 0 auto;
}

.chq-back-link {
    margin-bottom: 20px;
}

.chq-back-link a {
    color: #2271b1;
    text-decoration: none;
}

.chq-back-link a:hover {
    text-decoration: underline;
}

.chq-event-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.chq-event-date-badge {
    min-width: 80px;
    text-align: center;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: #fff;
    border-radius: 12px;
    padding: 16px 12px;
}

.chq-date-day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.chq-date-month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

.chq-date-year {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.chq-event-title-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1d2327;
}

.chq-event-meta-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chq-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #646970;
    font-size: 14px;
}

.chq-meta-item svg {
    flex-shrink: 0;
}

.chq-event-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
}

.chq-event-main h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1d2327;
}

.chq-event-description,
.chq-event-location-details,
.chq-event-pricing-info {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.chq-event-pricing-info {
    border-bottom: none;
}

.chq-price-free {
    color: #00a32a;
    font-weight: 600;
    font-size: 16px;
}

.chq-price-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chq-price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 6px;
}

.chq-price-label {
    font-weight: 500;
}

.chq-price-value {
    font-weight: 600;
    color: #1d2327;
}

.chq-price-value small {
    font-weight: normal;
    color: #00a32a;
    margin-left: 8px;
}

/* Registration Box */
.chq-registration-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 20px;
}

.chq-registration-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #1d2327;
}

.chq-spots-left {
    background: #fff3cd;
    color: #856404;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
}

.chq-deadline {
    color: #646970;
    font-size: 13px;
    margin-bottom: 16px;
}

.chq-reg-closed {
    background: #f0f0f1;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #646970;
}

.chq-reg-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.chq-reg-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: #646970;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.chq-reg-tab:hover {
    color: #1d2327;
}

.chq-reg-tab.active {
    color: #2271b1;
    border-bottom-color: #2271b1;
}

.chq-reg-form {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.chq-reg-form.active {
    display: flex;
}

.chq-form-row {
    display: flex;
    flex-direction: column;
}

.chq-form-row-2 {
    flex-direction: row;
    gap: 12px;
}

.chq-form-row-2 > div {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.chq-form-row label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #1d2327;
}

.chq-form-row input,
.chq-form-row select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.chq-form-row input:focus,
.chq-form-row select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34,113,177,0.15);
}

.chq-checkbox-row {
    flex-direction: row;
    align-items: flex-start;
}

.chq-checkbox-row label {
    font-weight: normal;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.chq-checkbox-row input[type="checkbox"] {
    margin-top: 2px;
}

.chq-btn-block {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.chq-event-error {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
}

.chq-message-area {
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.chq-message-area.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.chq-message-area.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.chq-message-area p {
    margin: 0;
}

@media (max-width: 768px) {
    .chq-event-content-grid {
        grid-template-columns: 1fr;
    }
    
    .chq-registration-box {
        position: static;
    }
    
    .chq-event-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .chq-event-meta-info {
        align-items: center;
    }
}

/* ========================================
   MEMBERSHIP BENEFITS SHORTCODE
   ======================================== */

.chq-benefits {
    margin: 20px 0;
}

.chq-benefits-grid {
    display: grid;
    grid-template-columns: repeat(var(--chq-benefit-columns, 3), 1fr);
    gap: 24px;
}

.chq-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chq-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.chq-benefit-item:hover {
    border-color: #2271b1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chq-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    border-radius: 12px;
    color: #fff;
}

.chq-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.chq-benefit-content {
    flex: 1;
}

.chq-benefit-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
}

.chq-benefit-description {
    margin: 0;
    color: #646970;
    font-size: 14px;
    line-height: 1.6;
}

/* List layout variation */
.chq-benefits-list .chq-benefit-item {
    flex-direction: row;
    padding: 20px 24px;
}

.chq-benefits-list .chq-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.chq-benefits-list .chq-benefit-icon svg {
    width: 20px;
    height: 20px;
}

.chq-benefits-list .chq-benefit-title {
    font-size: 16px;
    margin-bottom: 4px;
}

.chq-benefits-list .chq-benefit-description {
    font-size: 13px;
}

@media (max-width: 768px) {
    .chq-benefits-grid {
        --chq-benefit-columns: 1 !important;
    }
    
    .chq-benefit-item {
        padding: 20px;
    }
    
    .chq-benefit-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .chq-benefit-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .chq-benefit-title {
        font-size: 16px;
    }
}

/* ========================================
   MEMBERSHIP APPLICATION FORM SHORTCODE
   ======================================== */

.chq-membership-apply-container {
    max-width: 780px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chq-membership-apply-header {
    text-align: center;
    margin-bottom: 30px;
}

.chq-membership-apply-header h2 {
    font-size: 28px;
    margin: 0 0 10px;
    color: #1d2327;
}

.chq-membership-apply-header p {
    font-size: 16px;
    color: #646970;
    margin: 0;
}

.chq-membership-benefits-preview {
    background: #f6f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 30px;
}

.chq-membership-benefits-preview h3 {
    font-size: 16px;
    margin: 0 0 15px;
    color: #1d2327;
}

.chq-benefits-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chq-benefits-list-simple li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #1d2327;
}

.chq-benefits-list-simple li:last-child {
    border-bottom: none;
}

.chq-benefits-list-simple li strong {
    color: #2271b1;
}

.chq-benefits-list-simple li span {
    color: #646970;
}

.chq-membership-apply-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
}

.chq-membership-apply-form h3 {
    font-size: 16px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #1d2327;
}

.chq-membership-apply-form h3:not(:first-child) {
    margin-top: 25px;
}

.chq-form-row {
    margin-bottom: 16px;
}

.chq-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.chq-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.chq-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #1d2327;
}

.chq-form-group label small {
    font-weight: normal;
    color: #646970;
}

.chq-form-group input,
.chq-form-group select,
.chq-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.chq-form-group input:focus,
.chq-form-group select:focus,
.chq-form-group textarea:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.chq-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.chq-checkbox-group {
    margin-top: 10px;
}

.chq-checkbox-group .chq-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.chq-checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.chq-btn-large {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
}

#chq-apply-message-area {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
}

#chq-apply-message-area.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#chq-apply-message-area.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (max-width: 600px) {
    .chq-membership-apply-form {
        padding: 20px;
    }
    
    .chq-form-row-2,
    .chq-form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .chq-membership-apply-header h2 {
        font-size: 22px;
    }
    
    .chq-form-group input,
    .chq-form-group select,
    .chq-form-group textarea {
        font-size: 16px; /* Prevents iOS zoom */
    }
}

/* ========================================
   MEMBER DIRECTORY SHORTCODE
   ======================================== */

.chq-directory-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chq-directory-header {
    text-align: center;
    margin-bottom: 30px;
}

.chq-directory-header h2 {
    font-size: 28px;
    margin: 0 0 10px;
    color: #1d2327;
}

.chq-directory-header p {
    font-size: 16px;
    color: #646970;
    margin: 0;
}

.chq-directory-search {
    background: #f6f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.chq-search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.chq-search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.chq-search-box input:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.chq-search-box .chq-btn {
    padding: 12px 24px;
    white-space: nowrap;
}

.chq-directory-filters {
    margin-top: 16px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.chq-filter-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chq-filter-dropdown label {
    font-weight: 500;
    color: #1d2327;
    font-size: 14px;
    white-space: nowrap;
}

.chq-filter-dropdown select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    min-width: 200px;
}

.chq-filter-dropdown select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34,113,177,0.15);
}

.chq-category-filters {
    margin-top: 16px;
}

.chq-filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 12px;
}

.chq-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chq-category-chip {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #1d2327;
    cursor: pointer;
    transition: all 0.2s;
}

.chq-category-chip:hover {
    border-color: #2271b1;
    color: #2271b1;
}

.chq-category-chip.active {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.chq-chip-count {
    opacity: 0.7;
    font-size: 12px;
}

.chq-directory-section {
    margin-bottom: 40px;
}

.chq-directory-section h3 {
    font-size: 20px;
    margin: 0 0 20px;
    color: #1d2327;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chq-result-count {
    font-size: 14px;
    font-weight: normal;
    color: #646970;
}

.chq-member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.chq-member-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.chq-member-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.chq-member-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.chq-member-card-suggestion {
    background: #f9fafb;
}

.chq-member-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.chq-member-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chq-member-logo-small {
    width: 60px;
    height: 60px;
}

/* Application Success State */
.chq-apply-success {
    text-align: center;
    padding: 60px 30px;
}

.chq-success-icon {
    color: #00a32a;
    margin-bottom: 20px;
}

.chq-apply-success h3 {
    font-size: 24px;
    color: #1d2327;
    margin: 0 0 15px;
}

.chq-apply-success p {
    color: #646970;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px;
}

.chq-message-area {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.chq-message-area.error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    color: #8a1c1f;
}

.chq-message-area.success {
    background: #edfaef;
    border: 1px solid #00a32a;
    color: #0a5c0a;
}

/* ===== EVENTS CALENDAR ===== */
.chq-calendar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.chq-calendar-header {
    text-align: center;
    margin-bottom: 30px;
}

.chq-calendar-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1d2327;
    margin: 0 0 10px;
}

.chq-calendar-intro {
    color: #646970;
    font-size: 16px;
    margin: 0;
}

/* Calendar Navigation */
.chq-calendar-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px;
    margin-bottom: 40px;
}

.chq-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chq-calendar-nav-btn {
    padding: 8px 16px;
    border-radius: 6px;
    background: #f0f0f1;
    color: #1d2327;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.chq-calendar-nav-btn:hover {
    background: #2271b1;
    color: #fff;
}

.chq-calendar-month-title {
    font-size: 24px;
    font-weight: 600;
    color: #1d2327;
    margin: 0;
}

/* Calendar Grid */
.chq-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.chq-calendar-day-header {
    background: #f9f9f9;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chq-calendar-day-header.chq-weekend {
    color: #999;
}

.chq-calendar-day {
    background: #fff;
    min-height: 100px;
    padding: 8px;
    position: relative;
    vertical-align: top;
}

.chq-calendar-day-empty {
    background: #fafafa;
}

.chq-day-number {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 6px;
}

.chq-calendar-day.chq-past .chq-day-number {
    color: #999;
}

.chq-calendar-day.chq-today {
    background: #f0f7ff;
}

.chq-calendar-day.chq-today .chq-day-number {
    background: #2271b1;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chq-calendar-day.chq-has-events {
    background: #fefff0;
}

.chq-day-events {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chq-day-event {
    display: block;
    background: #2271b1;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: background 0.2s;
}

.chq-day-event:hover {
    background: #135e96;
    color: #fff;
}

.chq-event-time {
  font-weight: 600;
  margin-right: 4px;
  }
  
  .chq-event-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  }
  
  /* Sponsor Badge for Calendar Day Events */
  .chq-sponsor-badge {
  display: inline-block;
  margin-left: 4px;
  color: #ffd700;
  vertical-align: middle;
  flex-shrink: 0;
  }
  
  .chq-day-event.chq-has-sponsor {
  background: linear-gradient(135deg, #2271b1 0%, #9b51e0 100%);
  border-left: 3px solid #ffd700;
  }

.chq-event-title {
    opacity: 0.9;
}

/* Events List Section */
.chq-events-list-section {
    margin-top: 40px;
}

.chq-events-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.chq-events-list-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d2327;
    margin: 0;
}

.chq-events-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chq-filter-input,
.chq-filter-select {
    padding: 10px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    min-width: 160px;
}

.chq-filter-input:focus,
.chq-filter-select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34,113,177,0.15);
}

/* Event Cards */
.chq-events-list-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chq-event-card {
  position: relative;
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  /* Sponsor section in top-right */
  .chq-card-sponsors-top-right {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 10;
  }
  
  /* Sponsor Flag for Event Cards */
  .chq-sponsor-flag {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  }
  
  .chq-sponsor-flag svg {
    fill: #000;
  }
  
  .chq-event-card.chq-has-sponsor {
    border-color: #ffd700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
  }
  
  /* Sponsor logos list under the chip */
  .chq-card-sponsors-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
  }
  
  .chq-sponsor-flag svg {
  fill: #000;
  }
  
  .chq-event-card.chq-has-sponsor {
  border-color: #ffd700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
  }
  
  /* Sponsor details on event cards */
  .chq-card-sponsors {
  margin: 12px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #f0f0f0;
  }
  
  .chq-card-sponsors-label {
  font-size: 11px;
  color: #646970;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
  }
  
  .chq-card-sponsors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  }
  
  .chq-card-sponsor-item img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .chq-card-sponsor-name {
    font-size: 11px;
    color: #646970;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-weight: 600;
  }

.chq-event-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.chq-event-card-date {
    width: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
}

.chq-event-day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.chq-event-month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.chq-event-year {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

.chq-event-card-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.chq-event-card-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 10px;
}

.chq-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.chq-event-time-meta,
.chq-event-location-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #646970;
}

.chq-event-time-meta svg,
.chq-event-location-meta svg {
    flex-shrink: 0;
}

.chq-event-excerpt {
    font-size: 14px;
    color: #646970;
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

.chq-event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.chq-event-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chq-price-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #e7f3ff;
    color: #2271b1;
}

.chq-price-badge.chq-price-free {
    background: #edfaef;
    color: #00a32a;
    font-weight: 600;
}

.chq-price-badge.chq-price-nonmember {
    background: #f0f0f1;
    color: #646970;
}

.chq-price-badge small {
    opacity: 0.8;
}

.chq-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.chq-btn-primary {
    background: #2271b1;
    color: #fff;
}

.chq-btn-primary:hover {
    background: #135e96;
    color: #fff;
}

/* No Events State */
.chq-no-events {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.chq-no-events svg {
    color: #c3c4c7;
    margin-bottom: 16px;
}

.chq-no-events p {
    font-size: 16px;
    color: #646970;
    margin: 0;
}

.chq-no-events-message {
    text-align: center;
    padding: 40px;
    color: #646970;
    font-size: 16px;
}

/* Calendar Modal */
.chq-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.chq-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.chq-modal-large {
    max-width: 800px;
}

.chq-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f1;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.chq-modal-close:hover {
    background: #d63638;
    color: #fff;
}

/* Responsive Calendar */
@media (max-width: 900px) {
    .chq-calendar-day {
        min-height: 80px;
        padding: 6px;
    }
    
    .chq-day-event {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .chq-event-time {
        display: none;
    }
}

@media (max-width: 768px) {
    .chq-event-card {
        flex-direction: column;
    }
    
    .chq-event-card-date {
        width: 100%;
        flex-direction: row;
        padding: 12px 16px;
        gap: 8px;
    }
    
    .chq-event-day {
        font-size: 24px;
    }
    
    .chq-event-month,
    .chq-event-year {
        margin: 0;
    }
    
    .chq-events-list-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chq-events-filters {
        width: 100%;
    }
    
    .chq-filter-input,
    .chq-filter-select {
        flex: 1;
        min-width: 0;
    }
    
    .chq-event-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chq-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .chq-calendar-grid {
        font-size: 12px;
    }
    
    .chq-calendar-day-header {
        padding: 8px 4px;
        font-size: 11px;
    }
    
    .chq-calendar-day {
        min-height: 60px;
        padding: 4px;
    }
    
    .chq-day-number {
        font-size: 12px;
    }
    
    .chq-day-events {
        display: none;
    }
    
    .chq-calendar-day.chq-has-events::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: #2271b1;
        border-radius: 50%;
    }
    
    .chq-calendar-month-title {
        font-size: 18px;
    }
    
    .chq-calendar-nav-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.chq-member-card-header {
    margin-bottom: 12px;
}

.chq-member-card-header h4 {
    font-size: 18px;
    margin: 0 0 6px;
    color: #1d2327;
}

.chq-member-card-header h4.chq-business-name {
    font-weight: 700;
}

.chq-member-category {
    display: inline-block;
    background: #e7f3ff;
    color: #2271b1;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
}

.chq-member-services {
    font-size: 14px;
    color: #646970;
    line-height: 1.5;
    margin: 0 0 15px;
    flex-grow: 1;
}

/* Member Employees List */
.chq-member-employees {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.chq-employees-label {
    font-size: 12px;
    font-weight: 600;
    color: #646970;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.chq-employees-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chq-employees-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.chq-employees-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.chq-employees-list li:first-child {
    padding-top: 0;
}

.chq-emp-name {
    font-weight: 600;
    color: #1d2327;
    font-size: 14px;
}

.chq-emp-title {
    font-size: 12px;
    color: #646970;
}

.chq-emp-email {
  font-size: 13px;
  color: #2271b1;
  text-decoration: none;
}

.chq-emp-email:hover {
  text-decoration: underline;
}

.chq-emp-phone {
  font-size: 13px;
  color: #2271b1;
  text-decoration: none;
}

.chq-emp-phone:hover {
  text-decoration: underline;
}

.chq-show-contact-btn {
  margin-top: 6px;
  padding: 6px 12px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.chq-show-contact-btn:hover {
  background: #135e96;
}

.chq-contact-details {
  margin-top: 8px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chq-member-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.chq-member-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #00a32a;
    font-weight: 500;
}

.chq-member-phone svg {
    flex-shrink: 0;
}

/* Phone text visible on desktop, hidden on mobile */
.chq-phone-text {
    display: inline;
}

/* Phone link hidden on desktop, visible on mobile */
.chq-phone-link-mobile {
    display: none;
    color: #00a32a;
    text-decoration: none;
}

/* On mobile devices, show clickable link instead of plain text */
@media screen and (max-width: 768px) {
    .chq-phone-text {
        display: none;
    }
    
    .chq-phone-link-mobile {
        display: inline;
    }
    
    .chq-phone-link-mobile:hover,
    .chq-phone-link-mobile:active {
        text-decoration: underline;
    }
}

.chq-member-link {
    font-size: 15px;
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
}

.chq-member-link:hover {
    color: #135e96;
    text-decoration: underline;
}

.chq-suggestions-section {
    background: #f9fafb;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.chq-suggestions-section h3 {
    color: #646970;
    font-size: 16px;
}

#chq-directory-loading {
    text-align: center;
    padding: 60px 20px;
}

.chq-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: #2271b1;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: chq-spin 0.8s linear infinite;
}

@keyframes chq-spin {
    to { transform: rotate(360deg); }
}

#chq-directory-loading p {
    color: #646970;
    margin: 0;
}

.chq-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.chq-no-results p {
    color: #646970;
    margin: 0;
    font-size: 16px;
}

.chq-error {
    color: #d63638;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .chq-search-box {
        flex-direction: column;
    }
    
    .chq-search-box .chq-btn {
        width: 100%;
    }
    
    .chq-member-grid {
        grid-template-columns: 1fr;
    }
    
    .chq-directory-header h2 {
        font-size: 22px;
    }
    
    .chq-category-chips {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    
    .chq-category-chip {
        flex-shrink: 0;
    }
    
    .chq-directory-filters {
        flex-direction: column;
    }
    
    .chq-filter-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .chq-filter-dropdown select {
        width: 100%;
        min-width: 0;
    }
    
    .chq-member-card-footer {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   TIER CALCULATOR STYLES
   ======================================== */

.chq-apply-step {
    margin-bottom: 30px;
}

.chq-step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.chq-step-number {
    width: 36px;
    height: 36px;
    background: #2271b1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.chq-step-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1d2327;
}

.chq-btn-link {
    background: none;
    border: none;
    color: #2271b1;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    text-decoration: underline;
    margin-left: auto;
}

.chq-btn-link:hover {
    color: #135e96;
}

.chq-tier-calculator {
    background: #f6f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.chq-tier-calculator .chq-form-group {
    max-width: 300px;
}

.chq-field-hint {
    font-size: 13px;
    color: #646970;
    margin-top: 6px;
    margin-bottom: 0;
}

.chq-tier-result {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.chq-tier-result-card {
    background: #fff;
    border: 2px solid #2271b1;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.chq-tier-result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.chq-tier-badge-large {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #fff !important;
    background: #2271b1;
}

.chq-tier-result-price {
    text-align: center;
}

.chq-price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #1d2327;
}

.chq-price-period {
    font-size: 14px;
    color: #646970;
}

.chq-tier-description {
    margin: 0;
    color: #646970;
    font-size: 15px;
}

.chq-all-tiers-overview {
    margin-top: 30px;
}

.chq-all-tiers-overview h4 {
    font-size: 16px;
    margin: 0 0 15px;
    color: #1d2327;
}

.chq-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.chq-tier-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
  }
  
  .chq-tier-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  }
  
  .chq-tier-card.chq-tier-card-active {
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.3);
  }

.chq-tier-card-header {
  padding: 15px;
  background: #2271b1;
  }
  
  .chq-tier-card-header h5 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  }
  
  .chq-tier-card-range {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  }

.chq-tier-card-price {
    padding: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #1d2327;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.chq-tier-card-price span {
    font-size: 14px;
    font-weight: 400;
    color: #646970;
}

.chq-tier-card-desc {
    padding: 15px;
    margin: 0;
    font-size: 13px;
    color: #646970;
}

.chq-selected-tier-summary {
    background: #e6f2e6;
    border: 1px solid #6fa36f;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.chq-tier-badge-small {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #fff !important;
    background: #2271b1;
}

#chq-summary-tier-price {
    font-weight: 600;
    color: #1d2327;
}

#chq-summary-employees {
    color: #646970;
    font-size: 14px;
}

.chq-membership-apply-form h4 {
    font-size: 16px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #1d2327;
}

.chq-membership-apply-form h4:not(:first-of-type) {
    margin-top: 25px;
}

.chq-membership-benefits-preview h4 {
    font-size: 15px;
    margin: 0 0 12px;
    color: #1d2327;
}

@media (max-width: 600px) {
    .chq-tier-result-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .chq-tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .chq-selected-tier-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Contact Info Box */
.chq-contact-info-box {
    background: #f0f6fc;
    border: 1px solid #c3d9ed;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
}

.chq-contact-info-box p {
    margin: 0 0 8px 0;
}

.chq-contact-info-box p:last-child {
    margin-bottom: 0;
}

.chq-contact-item {
    display: inline-block;
    margin-right: 25px;
}

.chq-contact-item a {
    color: #2271b1;
    text-decoration: none;
}

.chq-contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .chq-contact-item {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

/* ========================================
   STEP 1 - BENEFITS & SIZING
   ======================================== */

.chq-step1-benefits {
    background: linear-gradient(135deg, #f0f6fc 0%, #f6f7f7 100%);
    border: 1px solid #c3d9ed;
    border-radius: 10px;
    padding: 28px 30px;
    margin-bottom: 30px;
}

.chq-step1-benefits h4 {
    font-size: 20px;
    margin: 0 0 8px;
    color: #1d2327;
}

.chq-step1-benefits-intro {
    font-size: 15px;
    color: #646970;
    margin: 0 0 20px;
    line-height: 1.5;
}

.chq-step1-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.chq-step1-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.chq-step1-benefit-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2271b1;
    margin-top: 2px;
}

.chq-step1-benefit-item strong {
    display: block;
    font-size: 14px;
    color: #1d2327;
    margin-bottom: 2px;
}

.chq-step1-benefit-item span {
    display: block;
    font-size: 13px;
    color: #646970;
    line-height: 1.4;
}

.chq-step1-sizing {
    margin-bottom: 30px;
}

.chq-step1-sizing h4 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #1d2327;
}

.chq-step1-sizing > p {
    font-size: 14px;
    color: #646970;
    margin: 0 0 16px;
}

.chq-tiers-intro {
    font-size: 14px;
    color: #646970;
    margin: 0 0 16px;
}

@media (max-width: 600px) {
    .chq-step1-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .chq-step1-benefits {
        padding: 20px;
    }
}

/* Event Sponsors - Prominent Banner */
.chq-event-sponsors {
margin: 30px -20px 30px -20px;
padding: 30px 20px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-top: 3px solid #2271b1;
border-bottom: 3px solid #2271b1;
}

.chq-event-sponsors h3 {
font-size: 22px;
margin: 0 0 20px;
color: #1d2327;
text-align: center;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.chq-sponsors-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 30px;
}

.chq-sponsor-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 12px;
padding: 20px;
background: #fff;
border-radius: 12px;
border: 2px solid #e0e0e0;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: all 0.3s;
min-width: 180px;
}

.chq-sponsor-item:hover {
transform: translateY(-4px);
box-shadow: 0 6px 16px rgba(0,0,0,0.12);
border-color: #2271b1;
}

.chq-sponsor-logo {
flex-shrink: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chq-sponsor-logo img {
width: 100%;
height: auto;
max-width: 150px;
max-height: 80px;
object-fit: contain;
}

.chq-sponsor-info {
width: 100%;
}

.chq-sponsor-info h4 {
margin: 0 0 8px;
font-size: 18px;
color: #1d2327;
font-weight: 700;
}

.chq-sponsor-info h4 a {
color: #2271b1;
text-decoration: none;
transition: color 0.2s;
}

.chq-sponsor-info h4 a:hover {
color: #135e96;
text-decoration: underline;
}

.chq-sponsor-level {
display: inline-block;
padding: 5px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 8px;
letter-spacing: 0.5px;
}

.chq-sponsor-level-gold {
background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
color: #000;
box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.chq-sponsor-level-silver {
background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 100%);
color: #000;
box-shadow: 0 2px 6px rgba(192, 192, 192, 0.3);
}

.chq-sponsor-level-bronze {
background: linear-gradient(135deg, #cd7f32 0%, #b8732d 100%);
color: #fff;
box-shadow: 0 2px 6px rgba(205, 127, 50, 0.3);
}

.chq-sponsor-info p {
margin: 0;
font-size: 14px;
color: #646970;
line-height: 1.6;
}

@media (max-width: 768px) {
.chq-event-sponsors {
  margin: 20px -15px;
  padding: 20px 15px;
}

.chq-sponsors-grid {
  gap: 20px;
}

.chq-sponsor-item {
  min-width: 140px;
  padding: 15px;
}

.chq-sponsor-logo img {
  max-width: 120px;
  max-height: 60px;
}

.chq-sponsor-info h4 {
  font-size: 16px;
}
}

.chq-sponsor-info {
    flex: 1;
}

.chq-sponsor-info h4 {
    margin: 0 0 5px;
    font-size: 15px;
}

.chq-sponsor-info h4 a {
    color: #1d2327;
    text-decoration: none;
}

.chq-sponsor-info h4 a:hover {
    color: #2271b1;
}

.chq-sponsor-info p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #6b7280;
}

.chq-sponsor-level {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    background: #e5e7eb;
    color: #374151;
}

.chq-sponsor-level-gold {
    background: #fef3c7;
    color: #92400e;
}

.chq-sponsor-level-silver {
    background: #f3f4f6;
    color: #4b5563;
}

.chq-sponsor-level-bronze {
    background: #fce7cd;
    color: #78350f;
}

.chq-sponsor-level-partner {
    background: #dbeafe;
    color: #1e40af;
}

/* External Registration */
.chq-external-registration {
    text-align: center;
}

.chq-external-registration p {
    margin-bottom: 15px;
    color: #6b7280;
}

.chq-btn-large {
    padding: 15px 25px !important;
    font-size: 16px !important;
}
