.wp-online-users-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.wp-online-users-box {
    background: white;
    border-radius: 12px;
    padding: 25px 40px;
    min-width: 250px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.wp-online-users-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.wp-online-users-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2271b1, #4f94d4);
}

.wp-online-users-title {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wp-online-users-title .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.wp-online-users-number {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #2271b1, #4f94d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.wp-online-users-number::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.wp-online-users-number.highlight {
    transform: scale(1.1);
    animation: highlight 0.5s ease-out;
}

.wp-online-users-box small {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes highlight {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading state */
.wp-online-users-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .wp-online-users-container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .wp-online-users-box {
        width: 100%;
        min-width: auto;
        padding: 20px;
    }

    .wp-online-users-number {
        font-size: 28px;
    }

    .wp-online-users-title {
        font-size: 16px;
    }
}