/**
 * Nikoala Users - Frontend Styles
 */

/* Containers */
.nikoala-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* Page Container for Login/Register */
.nikoala-page-container {
    max-width: none;
    width: 100%;
    margin: 40px 0;
    padding: 0 40px;
}

/* Login and Registration Forms */
.nikoala-login-form,
.nikoala-registration-form {
    padding: 40px;
    max-width: 720px;
    margin: 0 auto;
}

.nikoala-login-form h2,
.nikoala-registration-form h2 {
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 600;
}

.nikoala-form-group {
    margin-bottom: 20px;
}

.nikoala-form-group label {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    font-weight: 600;
    gap: 8px;
}

.nikoala-form-group label .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
    flex-shrink: 0;
}

.nikoala-form-group input[type="text"],
.nikoala-form-group input[type="email"],
.nikoala-form-group input[type="password"],
.nikoala-form-group input[type="tel"],
.nikoala-form-group input[type="url"],
.nikoala-form-group input[type="date"],
.nikoala-form-group textarea,
.nikoala-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    line-height: 1;
}

.nikoala-form-group input:focus,
.nikoala-form-group textarea:focus,
.nikoala-form-group select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

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

.nikoala-form-group.required label::after {
    content: " *";
    color: #e74c3c;
}

.nikoala-form-group .field-description {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

.nikoala-form-submit {
    text-align: center;
    margin-top: 30px;
}

.nikoala-form-links {
    text-align: center;
    margin-top: 20px;
}

.nikoala-form-links a {
    font-size: 16px;
}

/* Form Messages */
.nikoala-form-message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.subscription-status.status-active {
    background: #d4edda;
    color: #155724;
}

.subscription-status.status-trialing {
    background: #cce5ff;
    color: #004085;
}

.subscription-status.status-cancelled,
.subscription-status.status-unpaid {
    background: #f8d7da;
    color: #721c24;
}

.nikoala-form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}


.nikoala-profile-avatar {
    flex-shrink: 0;
}

.nikoala-profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nikoala-profile-meta {
    color: #666;
    font-size: 14px;
}

.nikoala-profile-meta span {
    margin-right: 15px;
}

.nikoala-profile-sidebar, .nikoala-settings-sidebar {
    padding: 20px;
    height: fit-content;
}

.nikoala-user-settings h3,
.nikoala-user-profile h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.nikoala-recent-posts {
    margin-top: 20px;
}

.nikoala-post-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nikoala-post-item:last-child {
    border-bottom: none;
}

.nikoala-post-title {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.nikoala-post-title a {
    color: #333;
    text-decoration: none;
}

.nikoala-post-meta {
    font-size: 14px;
    color: #666;
}

.nikoala-post-excerpt {
    margin: 8px 0 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.nikoala-user-settings,
.nikoala-user-profile {
    max-width: 1280px;
    width: 80%;
    margin: 2em auto;
}

/* User Settings Page */
.nikoala-settings-header {
    margin-bottom: 30px;
    text-align: center;
}

.nikoala-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
}

.nikoala-settings-content, .nikoala-profile-content {
    display: grid;
    grid-template-columns: 2fr 4fr;
    gap: 40px;
}

.nikoala-profile-content {
    grid-template-columns: 4fr 2fr;
}

.nikoala-settings-nav, .nikoala-profile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nikoala-settings-nav li, .nikoala-profile-nav li {
    margin-bottom: 5px;
}

.nikoala-settings-nav a, .nikoala-profile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}


.nikoala-settings-nav a:hover, .nikoala-profile-nav a:hover {
    background: #f0f0f0;
}

.nikoala-settings-nav a.active, .nikoala-profile-nav a.active {
    background: #333;
    color: #fff;
}

.nikoala-settings-nav a.active .dashicons {
    color: #fff;
}

.nikoala-settings-main, .nikoala-profile-main {
    padding: 20px;
}


.nikoala-settings-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.nikoala-settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Custom Field Display */
.nikoala-custom-fields {
    margin-top: 20px;
}

.nikoala-field-row {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.nikoala-field-label {
    font-weight: 600;
    color: #333;
    min-width: 120px;
    margin-right: 15px;
}

.nikoala-field-value {
    flex: 1;
    color: #666;
}

.nikoala-field-value a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nikoala-login-form,
    .nikoala-registration-form {
        margin: 20px;
        padding: 20px;
    }

    .nikoala-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .nikoala-profile-content,
    .nikoala-settings-content {
        grid-template-columns: 1fr;
    }

    .nikoala-settings-sidebar {
        order: 1;
    }

    .nikoala-settings-main {
        order: 2;
    }

    .nikoala-field-row {
        flex-direction: column;
    }

    .nikoala-field-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* Menu Avatar Styles */
.menu-item-avatar .menu-avatar-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-avatar {
    flex-shrink: 0;
    line-height: 0;
}

.menu-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.menu-avatar-link:hover .menu-avatar img {
    border-color: rgba(255, 255, 255, 0.8);
}

.menu-username {
    font-weight: 600;
    white-space: nowrap;
}

.menu-item-avatar {
    position: relative;
}

.menu-item-logout a {
    color: #d32f2f;
}

.menu-item-logout a:hover {
    background: #fff5f5;
    color: #c62828;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .menu-avatar-link {
        justify-content: center;
    }

    .menu-username {
        display: none;
    }

    .menu-item-avatar .sub-menu {
        right: auto;
        left: 0;
    }

    .nikoala-upload-progress {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Avatar Upload Progress and Messages */
.nikoala-upload-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

.progress-circle {
    width: 30px;
    height: 30px;
    position: relative;
}

.progress-spinner {
    width: 100%;
    height: 100%;
    border: 3px solid #e9ecef;
    border-top: 3px solid #007cba;
    border-radius: 50%;
    animation: progressSpin 1s linear infinite;
}

@keyframes progressSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.progress-text {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.nikoala-avatar-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInMessage 0.3s ease-in-out;
}

.nikoala-avatar-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.nikoala-avatar-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeInMessage {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nikoala-avatar-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nikoala-avatar-preview img {
    border-radius: 50%;
    border: 3px solid #ecf0f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* Sidebar Icons Styles */
.nikoala-settings-sidebar h3,
.nikoala-profile-sidebar h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nikoala-settings-sidebar h3 .dashicons,
.nikoala-profile-sidebar h3 .dashicons,
.nikoala-settings-section h4 .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
    flex-shrink: 0;
}

.nikoala-settings-nav a,
.nikoala-profile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nikoala-settings-nav a .dashicons,
.nikoala-profile-nav a .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* Statistics list items with icons */
.nikoala-profile-nav li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 2px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nikoala-profile-nav li:hover {
    background: #f8f9fa;
}

.nikoala-profile-nav li .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Paywall Styles */
.nikoala-paywall {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.nikoala-paywall-header {
    margin-bottom: 50px;
}

.nikoala-paywall h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #333;
}

.nikoala-paywall-description {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.nikoala-referral-discount {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: referralPulse 2s ease-in-out infinite;
}

.nikoala-referral-discount .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: #fff;
}

.nikoala-referral-discount .discount-text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes referralPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    }
}

.nikoala-paywall-plans {
    margin-bottom: 50px;
}

.nikoala-paywall-plans h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 40px 0;
    color: #333;
}

.nikoala-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nikoala-pricing-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.nikoala-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e5e5e5;
}

.nikoala-pricing-card.featured {
    border-color: #e5e5e5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.nikoala-pricing-header {
    padding: 30px 20px;
    position: relative;
    color: #fff;
    text-align: center;
}

.nikoala-pricing-header h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nikoala-featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: #ff6b35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nikoala-pricing-body {
    padding: 30px 20px;
}

.nikoala-pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.nikoala-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 16px;
    color: #495057;
}

.nikoala-pricing-features li:last-child {
    border-bottom: none;
}

.nikoala-pricing-features li .dashicons {
    color: #28a745;
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nikoala-pricing-action {
    text-align: center;
}

.nikoala-pricing-action .button {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nikoala-pricing-action .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nikoala-pricing-action .button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.nikoala-paywall-login {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.nikoala-paywall-login p {
    font-size: 18px;
    color: #495057;
    margin: 0 0 20px 0;
}

.nikoala-paywall-login .button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6c757d;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.nikoala-paywall-login .button:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.nikoala-paywall-login .button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.nikoala-paywall-contact {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 30px;
    border-radius: 12px;
    color: #856404;
}

.nikoala-paywall-contact p {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nikoala-paywall {
        margin: 20px auto;
        padding: 0 15px;
    }

    .nikoala-paywall h2 {
        font-size: 28px;
    }

    .nikoala-paywall-description {
        font-size: 16px;
    }

    .nikoala-paywall-plans h3 {
        font-size: 24px;
    }

    .nikoala-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nikoala-pricing-header {
        padding: 20px 15px;
    }

    .nikoala-pricing-header h4 {
        font-size: 20px;
    }

    .nikoala-pricing-body {
        padding: 20px 15px;
    }

    .nikoala-paywall-login,
    .nikoala-paywall-contact {
        padding: 20px;
    }
}

/* Skeleton Loader Styles */
.nikoala-pricing-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nikoala-pricing-card-skeleton {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.nikoala-pricing-card-skeleton.featured {
    border-color: #e5e5e5;
    box-shadow: 0 5px 20px rgba(0, 124, 186, 0.15);
}

.nikoala-skeleton-header {
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.nikoala-skeleton-title {
    height: 24px;
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: skeletonLoading 1.5s infinite;
    margin: 0 auto;
    width: 60%;
}

.nikoala-skeleton-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    width: 60px;
    height: 22px;
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    border-radius: 0 0 8px 8px;
    animation: skeletonLoading 1.5s infinite;
}

.nikoala-skeleton-body {
    padding: 30px 20px;
}

.nikoala-skeleton-price {
    text-align: center;
    margin-bottom: 30px;
}

.nikoala-skeleton-price-amount {
    height: 32px;
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: skeletonLoading 1.5s infinite;
    margin: 0 auto 8px;
    width: 70%;
}

.nikoala-skeleton-price-interval {
    height: 16px;
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: skeletonLoading 1.5s infinite;
    margin: 0 auto;
    width: 40%;
}

.nikoala-skeleton-features {
    margin-bottom: 30px;
}

.nikoala-skeleton-feature {
    height: 16px;
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: skeletonLoading 1.5s infinite;
    margin-bottom: 16px;
    width: 80%;
}

.nikoala-skeleton-feature:nth-child(2) {
    width: 90%;
}

.nikoala-skeleton-feature:nth-child(3) {
    width: 85%;
}

.nikoala-skeleton-feature:last-child {
    width: 75%;
    margin-bottom: 0;
}

.nikoala-skeleton-button {
    height: 50px;
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Pricing with Coupons */
.nikoala-pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.nikoala-price-original {
    display: block;
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
    font-weight: 400;
}

.nikoala-price-discounted {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.nikoala-price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.nikoala-price-interval {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nikoala-price-then {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

.nikoala-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Pricing Content Display */
.nikoala-pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nikoala-pricing-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 12px;
}

.nikoala-pricing-error p {
    margin: 0;
    font-size: 16px;
}

/* Enhanced styling for discounted prices */
.nikoala-pricing-card .nikoala-price-original + .nikoala-price-discounted {
    position: relative;
}

/* Mobile responsive adjustments for skeleton */
@media (max-width: 768px) {
    .nikoala-pricing-skeleton {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nikoala-skeleton-header {
        padding: 20px 15px;
    }

    .nikoala-skeleton-body {
        padding: 20px 15px;
    }

    .nikoala-pricing-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Referral countdown styles */
.nikoala-referral-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.nikoala-referral-countdown .dashicons {
    width: 14px;
    height: 14px;
    font-size: 14px;
    flex-shrink: 0;
}

.nikoala-referral-countdown .countdown-text {
    font-weight: 500;
}

.nikoala-referral-countdown .countdown-time {
    font-weight: 600;
}

.nikoala-referral-countdown.urgent {
    background: #fff3e0;
    border-color: #ffcc02;
    color: #e65100;
    animation: countdownUrgent 2s ease-in-out infinite;
}

.nikoala-referral-countdown.urgent .dashicons,
.nikoala-referral-countdown.urgent .countdown-time {
    color: #e65100;
}

.nikoala-referral-countdown.expired {
    background: #ffebee;
    border-color: #ffcdd2;
    color: #c62828;
}

.nikoala-referral-countdown.expired .dashicons,
.nikoala-referral-countdown.expired .countdown-time {
    color: #c62828;
}

@keyframes countdownUrgent {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
    }
}