/* Base Event Styles */
.wa-events-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Event Card */
.wa-event {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 20px;
    transition: transform 0.2s;
}

.wa-event:hover {
    transform: translateY(-2px);
}

/* Event Content Elements */
.wa-event-title {
    color: #333;
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 0;
}

.wa-event-meta {
    display: flex;
    gap: 100px;
    margin-bottom: 15px;
    color: #666;
    flex-direction: row;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f2f2f4;
}

.wa-event-meta p {
    margin: 0.5rem 0;
    color: #444;
    font-size: 1.5rem;
    line-height: 1.2em;
}

.wa-event-meta strong {
    color: #243E82;
    margin-right: 0.5rem;
}

.wa-event-meta > div {
    border-bottom: 1px solid #eee;
}

.wa-event-date,
.wa-event-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-event-summary,
.wa-event-description {
    margin: 15px 0;
    line-height: 1.6;
    color: #555;
    font-size: 1.4rem;
}

/* Event Tags */
.wa-event-tags {
    display: flex;
    gap: 8px;
}

.wa-tag {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Button Styles */
.wa-button {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.wa-register-button {
    background: #243E82;
    color: white;
    padding: 1rem 2rem;
    font-weight: bold;
}

.wa-register-button:hover {
    background: #1a2d5f;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.wa-details-button {
    background-color: #f0f0f0;
    color: #333;
}

.wa-details-button:hover {
    background-color: #e0e0e0;
}

.wa-submit-button{
    background: #243E82;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wa-submit-button:hover {
    background: #1a2d5f;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wa-waitlist-button {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    margin-top: 10px;
}

.wa-waitlist-button:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

.wa-button.disabled,
.wa-waitlist-button:disabled,
.wa-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Event Actions */
.wa-event-actions,
.wa-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Message Styles */
.wa-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.wa-message div {
    margin: 5px 0;
}

.wa-message.wa-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wa-message.wa-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wa-message.wa-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.wa-message.wa-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Access Notice */
.wa-access-notice {
    margin: 15px 0;
    padding: 10px 15px;
    border-left: 4px solid #ffb900;
    background: #fff8e5;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.wa-access-notice i {
    color: #ffb900;
    margin-right: 8px;
}

.wa-member-note {
    margin-top: 8px;
    font-style: italic;
    color: #666;
}

/* Single Event Page */
.wa-single-event {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.wa-single-event .wa-event-meta {
    flex-direction: column;
    gap: 0;
    background-color: unset;
    padding: 0;
}
.wa-single-event .wa-event-meta > div {
    margin-bottom: 1em;
    padding-bottom: 1em;
    margin-top: 0;
}

.wa-event-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.wa-event-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    border-radius: 4px;
}
.wa-event-status{
    font-weight: 600;
    font-size: 22px;
}
.wa-event-status .wa-status-open{
    color: #46b450;
}

.wa-event-status .wa-status-closed{
    color: #dc2626;
}

/* Registration Type */
.wa-registration-type {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 6px;
    margin-bottom: 1em;
    transition: transform 0.2s;
}

.wa-registration-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.wa-type-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    margin-top: 1em;
}

/* Registration Form */
.wa-event-registration-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wa-event-registration-form h3 {
    color: #243E82;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.wa-form-group {
    margin-bottom: 1.25rem;
}

.wa-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.wa-form-group input[type="text"],
.wa-form-group input[type="email"],
.wa-form-group input[type="tel"],
.wa-form-group input[type="date"],
.wa-form-group select,
.wa-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.6rem;
    line-height: 1.4;
    transition: border-color 0.3s ease;
}

.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.wa-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Required field indicator */
.wa-form-group label:has(+ input[required]),
.wa-form-group label:has(+ select[required]),
.wa-form-group label:has(+ textarea[required]) {
    position: relative;
}

/* Error states */
.wa-form-group input:invalid,
.wa-form-group select:invalid,
.wa-form-group textarea:invalid {
    border-color: #dc3232;
}

/* Section divider first of type */
.wa-form-section-divider:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

/* Total Section */
.wa-total-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-total-section strong {
    color: #243E82;
}

#registration-total {
    font-weight: 600;
    color: #2e7d32;
}

/* Privacy Policy */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    min-height: auto;
}

.checkbox-label a {
    color: #243E82;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Modal Styles */
#wa-registration-modal.wa-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    transition: opacity 0.3s ease-out;
    margin-left: 0;
}

.wa-modal .wa-event-registration-form{
    padding: 0;
    box-shadow: unset;
}
.wa-modal .wa-event-meta {
    flex-direction: row;
    background-color: #f8f9fa;
}

.wa-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 3% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    animation: modalSlideIn 0.3s ease-out;
}

.wa-modal-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Loading Overlay */
.wa-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.wa-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wa-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes modalSlideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wa-event-dates,
    .wa-type-details {
        grid-template-columns: 1fr;
    }

    .wa-event-registration-form {
        padding: 1.5rem;
    }

    .wa-form-actions {
        flex-direction: column;
    }

    .wa-submit-button,
    .wa-waitlist-button {
        width: 100%;
    }

    .wa-form-section-divider {
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .wa-form-group {
        margin-bottom: 1rem;
    }
    
    .wa-field-instructions {
        font-size: 0.85em;
    }
}

/* Event Status Section */
.wa-event-status-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--wa-bg-light, #f8f9fa);
    border-radius: var(--wa-border-radius, 4px);
    border: 1px solid var(--wa-border-color, #e9ecef);
}

.wa-event-status-section > div {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wa-event-status-section i {
    width: 1.5rem;
    text-align: center;
    color: var(--wa-icon-color, #6c757d);
}

/* Access Level Styles */
.wa-access-level i.fa-globe {
    color: var(--wa-success, #28a745);
}

.wa-access-level i.fa-lock {
    color: var(--wa-warning, #ffc107);
}

/* Registration Status */
.wa-registration-status {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.wa-status-open {
    color: var(--wa-success, #28a745);
    font-weight: 500;
}

.wa-status-closed {
    color: var(--wa-danger, #dc3545);
    font-weight: 500;
}

.wa-capacity-info {
    font-size: 0.9em;
    color: var(--wa-text-muted, #6c757d);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Event Type */
.wa-event-type {
    font-size: 0.9em;
    color: var(--wa-text-muted, #6c757d);
}

/* Enhanced Stripe Payment Modal Styles */
.wa-stripe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(2px);
}

.wa-stripe-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wa-stripe-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}

.wa-stripe-close:hover {
    background: #f0f0f0;
    color: #333;
}

.wa-payment-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e9ecef;
}

.wa-payment-header h3 {
    margin: 0 0 20px;
    color: #243E82;
    font-size: 1.5rem;
    font-weight: 600;
}

.wa-payment-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.wa-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.wa-summary-row:last-child {
    margin-bottom: 0;
}

.wa-summary-row.wa-total-row {
    border-top: 1px solid #dee2e6;
    padding-top: 8px;
    margin-top: 8px;
    font-weight: 600;
}

.wa-summary-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.wa-summary-value {
    color: #212529;
    font-weight: 500;
}

.wa-total-row .wa-summary-value {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
}

#wa-events-payment-form {
    padding: 20px 30px 30px;
}

.wa-form-row {
    margin-bottom: 20px;
}

.wa-form-row label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

#wa-events-card-element {
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: white;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#wa-events-card-element:focus-within {
    border-color: #243E82;
    box-shadow: 0 0 0 0.2rem rgba(36, 62, 130, 0.25);
}

#wa-events-card-errors {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
}

#wa-events-card-errors:not(:empty) {
    display: block;
}

.wa-billing-info {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #243E82;
}

.wa-billing-info p {
    margin: 0 0 5px;
    font-size: 0.9rem;
    color: #495057;
}

.wa-billing-info p:first-of-type {
    font-weight: 600;
    color: #243E82;
    margin-bottom: 8px;
}

.wa-billing-info p:last-child {
    margin-bottom: 0;
}

.wa-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #243E82 0%, #1a2f61 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 15px;
}

.wa-submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #1a2f61 0%, #0f1a3a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(36, 62, 130, 0.3);
}

.wa-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.wa-button-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-button-spinner i {
    margin-right: 8px;
}

#wa-events-payment-message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

#wa-events-payment-message.wa-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#wa-events-payment-message.wa-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#wa-events-payment-message i {
    margin-right: 8px;
}

.wa-payment-security {
    text-align: center;
    color: #6c757d;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wa-payment-security i {
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 576px) {
    .wa-stripe-modal {
        width: 95%;
        margin: 10px;
    }
    
    .wa-payment-header {
        padding: 20px 20px 15px;
    }
    
    #wa-events-payment-form {
        padding: 15px 20px 20px;
    }
    
    .wa-payment-header h3 {
        font-size: 1.3rem;
    }
    
    .wa-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .wa-summary-row.wa-total-row {
        flex-direction: row;
        align-items: center;
    }
}

/* Ticket Description Section */
.wa-ticket-description {
    margin-top: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #243E82;
    font-size: 0.95rem;
    line-height: 1.5;
}

.wa-description-content {
    color: #495057;
}

.wa-description-content strong {
    color: #243E82;
}

/* Enhanced Total Section Styling */
.wa-total-section.wa-paid-event {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-left: 4px solid #28a745;
}

.wa-total-section.wa-free-event {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    border-left: 4px solid #007bff;
}

.wa-total-section.wa-paid-event #registration-total {
    color: #28a745;
    font-weight: 700;
}

.wa-total-section.wa-free-event #registration-total {
    color: #007bff;
    font-weight: 700;
}

/* Enhanced Registration Type Select */
.wa-form-group select#registration_type {
    font-size: 1.6rem;
    padding: 12px 16px;
}

.wa-form-group select#registration_type option:disabled {
    color: #6c757d;
    background: #f8f9fa;
}

/* Ticket Type Pricing Display */
.wa-pricing-breakdown {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.9rem;
}

.wa-pricing-breakdown .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.wa-pricing-breakdown .price-row:last-child {
    margin-bottom: 0;
    border-top: 1px solid #dee2e6;
    padding-top: 5px;
    font-weight: 600;
}

/* Event Registration Payment Section */
.wa-form-section.payment-section {
    margin-top: 25px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wa-form-section.payment-section h3 {
    color: #243E82;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.wa-stripe-payment-form {
    margin-top: 15px;
}

.wa-payment-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #243E82;
}

.wa-amount-label {
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}

.wa-amount-value {
    font-weight: 700;
    color: #243E82;
    font-size: 1.25rem;
}

/* Card Element Styling */
.wa-card-element {
    background: white;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wa-card-element:focus-within {
    border-color: #243E82;
    box-shadow: 0 0 0 3px rgba(36, 62, 130, 0.1);
}

.wa-card-element.StripeElement--focus {
    border-color: #243E82;
    box-shadow: 0 0 0 3px rgba(36, 62, 130, 0.1);
}

.wa-card-element.StripeElement--invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.wa-card-element.StripeElement--complete {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Card Errors */
.wa-card-errors {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 8px;
    font-weight: 500;
    min-height: 20px;
}

.wa-card-errors:empty {
    display: none;
}

/* Payment Security Section */
.wa-payment-security {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.wa-security-icons {
    margin-bottom: 8px;
}

.wa-security-icons i {
    color: #28a745;
    margin: 0 8px;
    font-size: 1.1rem;
}

.wa-security-text {
    margin: 0;
    color: #6c757d;
    line-height: 1.2em;
}

.wa-security-text small {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Payment Unavailable Message */
.wa-payment-unavailable {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
    text-align: center;
}

.wa-payment-unavailable p {
    margin: 0;
    font-weight: 500;
}

/* Enhanced Button Styling with Loader */
.wa-submit-button {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-button-loader {
    display: none;
    margin-left: 8px;
}

.wa-button-loader::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wa-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wa-form-section.payment-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .wa-payment-amount {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .wa-amount-label,
    .wa-amount-value {
        font-size: 1rem;
    }
    
    .wa-card-element {
        padding: 14px 12px;
    }
}

/* Dynamic Registration Form Fields */
.wa-form-section-divider {
    margin: 2rem 0 1rem 0;
    padding: 1rem 0;
    border-top: 2px solid #eee;
}

.wa-form-section-divider h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
}

.wa-field-instructions {
    margin: 0.25rem 0 0.75rem 0;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

.wa-checkbox-option {
    margin: 0.5rem 0;
}

.wa-checkbox-option .checkbox-label {
    display: flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.wa-checkbox-option input[type="radio"],
.wa-checkbox-option input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1);
}

/* Registration action styling */
.wa-registration-action {
    text-align: center;
    margin: 2rem 0;
}

.wa-external-link {
    margin: 0.75rem 0 0 0;
    text-align: center;
}

.wa-external-link small {
    color: #666;
}

.wa-external-link a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wa-external-link a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Registration breakdown styling */
.wa-registration-breakdown {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.wa-confirmed,
.wa-pending {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.wa-confirmed {
    background-color: #d4edda;
    color: #155724;
}

.wa-pending {
    background-color: #fff3cd;
    color: #856404;
}

.wa-default-selection {
    background-color: #e1f5fe;
    color: #01579b;
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 4px solid #0288d1;
    margin: 0.5rem 0;
}

.wa-default-selection i {
    color: #ffa000;
}

.wa-description {
    font-style: italic;
    color: #666;
    margin: 0.5rem 0;
}

/* Responsive adjustments for breakdown */
@media (max-width: 768px) {
    .wa-registration-breakdown {
        flex-direction: column;
        gap: 0.5rem;
    }
}