/* ============================================
   SUMA Christmas 2025 Event Registration Styles
   ============================================ */

.suma-event-registration-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.suma-event-registration-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.suma-event-registration-header h2 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.suma-event-registration-header p {
    margin: 0 0 15px 0;
    font-size: 16px;
    opacity: 0.95;
}

.capacity-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.suma-event-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin: 20px auto;
    max-width: 800px;
}

/* Member Discount Notice */
.member-discount-notice {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 30px 40px;
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    animation: pulse-border 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.member-discount-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #ffd700;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    50% {
        border-color: #ffed4e;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    }
}

.member-discount-notice .notice-icon {
    font-size: 64px;
    display: block;
    margin: 0 auto 15px;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.member-discount-notice .notice-content {
    position: relative;
    z-index: 1;
}

.member-discount-notice .notice-content strong {
    display: block;
    color: #165b33;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

.member-discount-notice .notice-content p {
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.member-discount-notice .login-link {
    color: #165b33;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(22, 91, 51, 0.2);
}

.member-discount-notice .login-link:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 91, 51, 0.3);
    color: #0d3d22;
}

@media (max-width: 768px) {
    .member-discount-notice {
        padding: 20px 25px;
        margin: 20px auto;
    }
    
    .member-discount-notice .notice-icon {
        font-size: 48px;
    }
    
    .member-discount-notice .notice-content strong {
        font-size: 22px;
    }
    
    .member-discount-notice .notice-content p {
        font-size: 15px;
    }
    
    .member-discount-notice .login-link {
        font-size: 15px;
        padding: 6px 16px;
    }
}

/* Logged In User Info */
.logged-in-info {
    background: linear-gradient(135deg, #e8f5e9 0%, #f0f8f0 100%);
    border: 2px solid #165b33;
    border-radius: 10px;
    padding: 15px 25px;
    margin: 25px auto;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(22, 91, 51, 0.2);
}

.logged-in-info .welcome-text {
    color: #165b33;
    font-size: 18px;
    font-weight: 500;
}

.logged-in-info .welcome-text strong {
    font-weight: 700;
}

.logged-in-info .logout-link {
    color: #c41e3a;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #c41e3a;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.logged-in-info .logout-link:hover {
    background: #c41e3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(196, 30, 58, 0.3);
}

@media (max-width: 768px) {
    .logged-in-info {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .logged-in-info .welcome-text {
        font-size: 16px;
    }
    
    .logged-in-info .logout-link {
        font-size: 13px;
        padding: 6px 16px;
    }
}

/* Form Sections */
.suma-event-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.suma-event-form-section {
    margin-bottom: 40px;
}

.suma-event-form-section h3 {
    color: #c41e3a;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
}

/* Info Note */
.suma-event-info-note {
    background: #e8f4f8;
    border-left: 4px solid #0073aa;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #23282d;
}

.suma-event-info-note strong {
    color: #0073aa;
}

/* Form Groups */
.suma-event-form-group {
    margin-bottom: 20px;
}

.suma-event-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.suma-event-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.suma-event-form-group .required {
    color: #e74c3c;
    font-weight: bold;
}

/* Form Inputs */
.suma-event-form-group input[type="text"],
.suma-event-form-group input[type="email"],
.suma-event-form-group input[type="tel"],
.suma-event-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.suma-event-form-group input:focus,
.suma-event-form-group select:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.suma-event-form-group select {
    cursor: pointer;
    background-color: white;
}

/* Guest Entries */
.guest-entry {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    position: relative;
}

.guest-entry:first-child {
    border-color: #165b33;
    background: #f0f8f0;
}

.guest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.guest-header h4 {
    margin: 0;
    color: #165b33;
    font-size: 18px;
}

.remove-guest-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-guest-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
    color: #ffd700;
}

#add-guest-container {
    text-align: center;
    margin: 20px 0;
}

.suma-add-guest-btn {
    background: #165b33;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(22, 91, 51, 0.3);
}

.suma-add-guest-btn:hover {
    background: #0f4024;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 91, 51, 0.4);
    color: #ffd700;
}

/* Submit Button */
.suma-event-form-actions {
    margin-top: 40px;
    text-align: center;
}

.suma-event-submit-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
    position: relative;
    min-width: 200px;
}

.suma-event-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.5);
    color: #ffd700;
}

.suma-event-submit-btn:active {
    transform: translateY(0);
}

.suma-event-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.suma-event-submit-btn .btn-loader {
    display: inline-block;
}

/* Messages */
#suma-event-message-container {
    margin-bottom: 30px;
}

.suma-event-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suma-event-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #165b33;
}

.suma-event-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.suma-event-message h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.suma-event-message p {
    margin: 5px 0;
}

.suma-event-message strong {
    font-weight: 600;
}

/* Confirmation Message Styles */
.confirmation-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.confirmation-details p {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirmation-details .label {
    font-weight: 600;
    color: #c41e3a;
}

/* Success Icon */
@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #165b33;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
    animation: checkmark 0.5s ease;
}

.success-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 36px;
    font-weight: bold;
}

/* Loading State */
.suma-event-form.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Validation States */
.suma-event-form-group input.error,
.suma-event-form-group select.error {
    border-color: #e74c3c;
}

.suma-event-form-group .error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .suma-event-registration-container {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .suma-event-registration-header {
        padding: 30px 15px;
    }
    
    .suma-event-registration-header h2 {
        font-size: 24px;
    }
    
    .suma-event-form {
        padding: 25px 20px;
    }
    
    .suma-event-form-section h3 {
        font-size: 18px;
    }
    
    .suma-event-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .suma-event-submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
}

/* ============================================
   Pricing and Payment Section Styles
   ============================================ */

/* Early Bird Banner */
.early-bird-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    color: white;
}

.pricing-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.pricing-table td {
    padding: 12px 15px;
    font-size: 14px;
}

.pricing-table .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.pricing-table tfoot {
    background: #f5f5f5;
    font-weight: bold;
}

.pricing-table tfoot td {
    padding: 15px;
    font-size: 16px;
}

.pricing-table .total-row {
    border-top: 3px solid #c41e3a;
}

#total-amount {
    color: #c41e3a;
    font-size: 20px;
}

/* Payment Section */
.payment-instructions {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #165b33;
    margin-bottom: 20px;
}

.payment-instructions p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.payment-instructions h4 {
    color: #c41e3a;
    margin: 20px 0 10px 0;
    font-size: 16px;
}

/* Zelle Information */
.zelle-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.zelle-details, .zelle-qr {
    text-align: center;
}

.zelle-phone {
    font-size: 20px;
    font-weight: bold;
    color: #165b33;
    margin: 10px 0;
}

.zelle-recipient {
    color: #666;
    font-size: 14px;
}

.qr-code-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border: 3px solid #165b33;
    border-radius: 8px;
    padding: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.qr-instructions {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* Payment Steps */
.payment-steps {
    margin-top: 20px;
}

.payment-steps ol {
    padding-left: 25px;
}

.payment-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.payment-steps strong {
    color: #165b33;
}

/* Transaction Number Input */
#transaction_number {
    border: 2px solid #165b33 !important;
    font-weight: 500;
}

#transaction_number:focus {
    border-color: #c41e3a !important;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* Membership Panel Container */
.suma-event-membership-panel {
    margin-bottom: 30px;
}

/* Membership Information Display */
.membership-info-display {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e9 100%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #165b33;
    margin-bottom: 10px;
}

.membership-info-display.membership-expired {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 4px solid #c41e3a;
}

.membership-plan-name {
    color: #165b33;
    font-weight: bold;
    font-size: 16px;
}

.membership-expired .membership-plan-name {
    color: #c41e3a;
}

.member-badge {
    display: inline-block;
    background: #165b33;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 600;
}

.expired-badge {
    display: inline-block;
    background: #c41e3a;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 600;
}

.expiration-message {
    background: #fff3cd;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 15px;
    color: #856404;
    font-weight: 500;
    line-height: 1.5;
}

.renewal-link {
    margin-top: 12px;
}

.renew-button {
    display: inline-block;
    background: linear-gradient(135deg, #165b33 0%, #0d3d22 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(22, 91, 51, 0.3);
}

.renew-button:hover {
    background: linear-gradient(135deg, #0d3d22 0%, #165b33 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 91, 51, 0.4);
}

.membership-limits {
    background: #fff9e6;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #ffd700;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.guest-limit-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: 600;
    text-align: center;
}

/* Member Savings Highlight for Non-Members */
.member-savings-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid #165b33;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(22, 91, 51, 0.2);
}

.savings-header h4 {
    color: #165b33;
    margin: 0 0 15px 0;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.savings-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rate-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
}

.rate-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.non-member-rate {
    background: #fff3cd;
    border: 2px solid #ffc107;
}

.member-rate {
    background: #d4edda;
    border: 2px solid #28a745;
}

.rate-label {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 5px;
}

.rate-adults,
.rate-kids {
    font-size: 15px;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rate-adults strong,
.rate-kids strong {
    color: #000;
    font-size: 18px;
}

.save-badge {
    background: #28a745;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.arrow-divider {
    font-size: 32px;
    color: #28a745;
    font-weight: bold;
    text-align: center;
}

.savings-message {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 15px;
    border-radius: 8px;
    border: 2px dashed #165b33;
    text-align: center;
}

.savings-message p {
    margin: 8px 0;
    font-size: 15px;
    color: #333;
}

.savings-message strong {
    color: #c41e3a;
    font-size: 17px;
}

.join-button {
    display: inline-block;
    background: linear-gradient(135deg, #165b33 0%, #0d3d22 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(22, 91, 51, 0.3);
    margin-top: 10px;
}

.join-button:hover {
    background: linear-gradient(135deg, #0d3d22 0%, #165b33 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 91, 51, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Adjustments for Payment Section */
@media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    #total-amount {
        font-size: 18px;
    }
    
    .zelle-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .qr-code-image {
        max-width: 180px;
    }
    
    .payment-steps li {
        font-size: 14px;
    }
    
    /* Member Savings Highlight - Mobile */
    .rate-comparison {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .arrow-divider {
        transform: rotate(90deg);
        font-size: 24px;
        margin: 5px 0;
    }
    
    .savings-header h4 {
        font-size: 18px;
    }
    
    .rate-adults,
    .rate-kids {
        font-size: 14px;
        flex-direction: column;
        gap: 4px;
    }
    
    .rate-adults strong,
    .rate-kids strong {
        font-size: 16px;
    }
    
    .savings-message p {
        font-size: 14px;
    }
}

/* Guest Limit Info Display */
.guest-limit-info {
    margin: 15px 0;
    padding: 12px 16px;
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 6px;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 600;
}

.guest-limit-info .limit-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Guest Limit Reached */
.guest-limit-reached {
    margin: 15px 0;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
    font-weight: 600;
}

.guest-limit-reached .limit-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Disabled Add Guest Button */
#add-guest-btn.disabled,
#add-guest-btn:disabled {
    background: #9e9e9e !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

#add-guest-btn.disabled:hover,
#add-guest-btn:disabled:hover {
    background: #9e9e9e !important;
    transform: none !important;
}

/* Info Message */
.suma-event-info {
    margin: 20px 0;
    padding: 15px 20px;
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    color: #0d47a1;
    font-size: 14px;
    line-height: 1.6;
}

.suma-event-info strong {
    display: block;
    margin-bottom: 8px;
    color: #1565c0;
}

/* Error Message */
.suma-event-error {
    margin: 20px 0;
    padding: 15px 20px;
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 8px;
    color: #c62828;
    font-size: 14px;
    line-height: 1.6;
}

.suma-event-error strong {
    display: block;
    margin-bottom: 8px;
    color: #d32f2f;
}
